XPRS_bo_getlasterror
XPRS_bo_getlasterror |
int XPRS_CC XPRS_bo_getlasterror(XPRSbranchobject obranch, int* iMsgCode, char* _msg, int _iStringBufferBytes, int* _iBytesInInternalString);
obranch
|
The branch object.
|
iMsgCode
|
Location where the error code will be returned. Can be NULL if not required.
|
_msg
|
A character buffer of size
iStringBufferBytes in which the last error message relating to the given branching object will be returned.
|
iStringBufferBytes
|
The size of the character buffer
_msg.
|
_iBytesInInternalString
|
The size of the required character buffer to fully return the error string.
|
XPRSbranchobject obranch; ... char* cbuf; int cbuflen; if (XPRS_bo_setpreferredbranch(obranch,3)) { XPRS_bo_getlasterror(obranch,NULL,NULL,0,&cbuflen); cbuf = malloc(cbuflen); XPRS_bo_getlasterror(obranch,NULL, cbuf, cbuflen, NULL); printf("ERROR when setting preferred branch: %s\n", cbuf); }
© 2001-2020 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.