RFmxGSM_GetError
- Updated2024-10-14
- 3 minute(s) read
RFmxGSM_GetError
int32 __stdcall RFmxGSM_GetError (niRFmxInstrHandle instrumentHandle, int32* errorCode, int32 errorDescriptionBufferSize, char errorDescription[]);
Purpose
Retrieves and then clears the error information for the session or the current execution thread. You must provide a char array to serve as a buffer for the value. Pass the number of bytes in the buffer as the errorDescriptionBufferSize parameter.
If the error description, including the terminating NULL byte, is larger than the size you indicate in the errorDescriptionBufferSize parameter, the function copies buffer size - 1 bytes into the buffer, places an ASCII NULL byte at the end of the buffer, and returns the buffer size you must pass to get the entire value. For
Example, if the value is
"123456" and the buffer size is
4, the function places
"123" into the buffer and returns
7.
If you want to call this function just to get the required buffer size, you must pass 0 for errorDescriptionBufferSize and NULL for the errorDescription buffer.
![]() |
Note Use the RFmxGSM_GetErrorString function if the RFmxGSM_GetError function does not return an error message. |
Parameters
Input | ||
Name | Type | Description |
instrumentHandle | niRFmxInstrHandle | Specifies the RFmx session. If a valid session handle is passed, the last error stored in that session is retrieved. You can pass NULL to retrieve the last error stored in the current execution thread. |
errorCode | int32* | Returns the error code for the session or execution thread. If you pass 0 for the errorDescriptionBufferSize parameter, you can pass NULL for the errorCode parameter. |
errorDescriptionBufferSize | int32 | Passes the number of bytes in the char array you specify in the errorDescription parameter. |
errorDescription | char[] | Returns the error description for the session or execution thread. If there is no description, this function returns an empty string. |
Return Value
Name | Type | Description | ||||||||
statusOrRequiredSize | int32 | Returns the status code of this operation. The status code either indicates success or describes an error or warning condition. Examine the status code from each call to an RFmx function to determine if an error has occurred. When the statusOrRequiredSize return value returns the buffer size, the status code is not returned. To obtain a text description of the status code and additional information about the error condition, call the RFmxGSM_GetError function. The general meaning of the status code is as follows:
|