Function
Determines the action taken when DXSetError is called in a stand-alone program.
Syntax
#include <dx/dx.h>
Void DXSetErrorExit(int level);
Functional Details
Valid arguments for level are:
0 | = store error message. Use DXPrintError() to print when ready. |
1 | = print error message and return. |
2 | = print error message and exit. |
This routine is intended for those using Data Explorer library routines in their own programs, and for use only in stand-alone programs. By default, DXInitModules sets level to 1 (one). DXSetErrorExit affects the behavior of DXSetError only outside those built-in Data Explorer modules called with DXCallModule.
Return Value
No return value.
See Also