PCMSGetErrorString
Syntax
int PCMSGetErrorString(int errCode, char *buffer, int bufLen)
Parameters
- int errCode – The PC*Miler Connect error code.
- char *buffer – The buffer where the error text will be deposited.
- int bufLen – The length of the buffer.
Description
Gets the error text from PC*Miler Connect’s resources.
Return Values
Returns the number of characters copied into the buffer.
Sample Code
/* Create a new trip */
shortTrip = PCMSNewTrip(server);
/* Error handling */
if (0 == shortTrip)
{
errorCode = PCMSGetError();
printf("Could not create a trip:");
printf("%s\n", PCMSGetErrorString(errorCode, buffer, 100));
}
Supported Since: PC*Miler Connect 12
Category: Trip Management