Define KEBUGCHECK and KEBUGCHECKEX here.

svn path=/trunk/; revision=15979
This commit is contained in:
Filip Navara 2005-06-17 13:13:37 +00:00
parent 05548c5587
commit a4cb3017e6

View file

@ -93,4 +93,9 @@
#error Unsupported architecture.
#endif
#ifndes KEBUGCHECK
#define KEBUGCHECK(a) DbgPrint("KeBugCheck (0x%X) at %s:%i\n", a, __FILE__,__LINE__), KeBugCheck(a)
#define KEBUGCHECKEX(a,b,c,d,e) DbgPrint("KeBugCheckEx (0x%X, 0x%X, 0x%X, 0x%X, 0x%X) at %s:%i\n", a, b, c, d, e, __FILE__,__LINE__), KeBugCheckEx(a,b,c,d,e)
#endif
#endif /* __INTERNAL_DEBUG */