public static void SetErrorFunc() { if (errorTrapped) { return; } queue = new Queue(10); VistaDBAPI.ivdb_ErrorLevel(2); errorFunc = new VDBUserErrorFunc(UserErrorFunc); VistaDBAPI.ivdb_SetErrorFunc(errorFunc, 0); errorTrapped = true; }
public static int ivdb_SetErrorFunc( VDBUserErrorFunc func, int pUserErrorInfo ) { return vdb_SetErrorFunc(func, pUserErrorInfo); }
private static extern int vdb_SetErrorFunc( VDBUserErrorFunc func, int pUserErrorInfo );
public static void SetErrorFunc() { if( errorTrapped ) return; queue = new Queue(10); VistaDBAPI.ivdb_ErrorLevel(2); errorFunc = new VDBUserErrorFunc(UserErrorFunc); VistaDBAPI.ivdb_SetErrorFunc(errorFunc, 0); errorTrapped = true; }