123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /*
- THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
- SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
- END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
- ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
- IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
- SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
- FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
- CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
- AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
- COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
- */
- /*
- * $Source: f:/miner/source/misc/rcs/error.h $
- * $Revision: 1.12 $
- * $Author: matt $
- * $Date: 1994/06/17 15:22:46 $
- *
- * Header for error handling/printing/exiting code
- *
- * $Log: error.h $
- * Revision 1.12 1994/06/17 15:22:46 matt
- * Added pragma for Error() for when NDEBUG
- *
- * Revision 1.11 1994/03/07 13:22:14 matt
- * Since the Error() function has 'aborts' set in pragma, we do a jmp
- * to the function rather than call.
- *
- * Revision 1.10 1994/02/17 12:37:15 matt
- * Combined two pragma's for Error(), since second superseded the first
- *
- * Revision 1.9 1994/02/10 18:02:53 matt
- * Changed 'if DEBUG_ON' to 'ifndef NDEBUG'
- *
- * Revision 1.8 1994/02/09 15:18:29 matt
- * Added pragma saying that Error() never returns
- *
- * Revision 1.7 1993/10/19 12:57:53 matt
- * If DEBUG_ON not defined, define it to be 1
- *
- * Revision 1.6 1993/10/15 21:40:39 matt
- * Made error functions generate int3's if debugging on
- *
- * Revision 1.5 1993/10/14 15:29:22 matt
- * Added new function clear_warn_func()
- *
- * Revision 1.4 1993/10/08 16:16:47 matt
- * Made Assert() call function _Assert(), rather to do 'if...' inline.
- *
- * Revision 1.3 1993/09/29 11:39:07 matt
- * Added Assert() macro, like the system one, but calls Error()
- *
- * Revision 1.2 1993/09/27 11:47:03 matt
- * Added function set_warn_func()
- *
- * Revision 1.1 1993/09/23 20:17:46 matt
- * Initial revision
- *
- *
- */
- int error_init(char *fmt,...); //init error system, set default message, returns 0=ok
- void set_exit_message(char *fmt,...); //specify message to print at exit
- void Warning(char *fmt,...); //print out warning message to user
- void set_warn_func(void (*f)(char *s));//specifies the function to call with warning messages
- void clear_warn_func(void (*f)(char *s));//say this function no longer valid
- void _Assert(int expr,char *expr_text,char *filename,int linenum); //assert func
- void Error(char *fmt,...); //exit with error code=1, print message
- void Assert(int expr);
- void Int3();
- #ifndef NDEBUG //macros for debugging
- //void Int3(void); //generate int3
- #pragma aux Int3 = "int 3h";
- //#define Assert(expr) _Assert(expr,#expr,__FILE__,__LINE__)
- //make error do int3, then call func
- #pragma aux Error aborts = \
- "int 3" \
- "jmp Error";
- //#pragma aux Error aborts;
- //make assert do int3 (if expr false), then call func
- #pragma aux _Assert parm [eax] [edx] [ebx] [ecx] = \
- "test eax,eax" \
- "jnz no_int3" \
- "int 3" \
- "no_int3:" \
- "call _Assert";
- #else //macros for real game
- #pragma aux Error aborts;
- //Changed Assert and Int3 because I couldn't get the macros to compile -KRB
- //#define Assert(__ignore) ((void)0)
- void Assert(int expr);
- //#define Int3() ((void)0)
- void Int3();
- #endif
|