int KISAMGetErrorMsg(int errcode, char *lpMsgBuf, int MsgBufLen)
Parameter | Type | Purpose |
errcode | int | error code returned by a KISAM API call |
lpMsgBuf | char * | buffer to receive the English language string corresponding to the error code |
MsgBufLen | int | size of the lpMsgBuf buffer. The string will be truncated if necessary to fit. |
An error code returned by any of these API functions can be expanded into a more descriptive string using this call. The code is passed in errcode together with a buffer lpMsgBuf of size MsgBufLen. The string will be truncated if necessary to fit into the buffer.