ami_ErrorGet... Accessors
Function
Declaration
int ami_ErrorGetCode(
ami_Error inAmiError );
const char * ami_ErrorGetText(
ami_Error inAmiError );
int ami_ErrorGetThread(
ami_Error inAmiError );
const char * ami_ErrorGetFile(
ami_Error inAmiError );
int ami_ErrorGetLine(
ami_Error inAmiError );
Accessor Functions
Function |
Description |
|
Returns the AMI C API error code of the specified AMI error handle. |
|
Returns the textual description of the specified AMI error. This function always returns a description (never NULL). If no description was specified in the create call then a default message is used which states that no description is available. |
|
Returns the thread ID of the thread which created the specified AMI error. |
|
Returns the name of the source file which generated the specified AMI error. This function can return a NULL pointer if the specified error was not file stamped. |
|
Returns the line number of the source file which generated the specified AMI error. This function could return zero if the specified error was not file stamped. |