Missed this file out last time... I moved KEBUGCHECK and KEBUGCHECKEX into ntos/kefuncs.h (a new file)

svn path=/trunk/; revision=5463
This commit is contained in:
Andrew Greenwood 2003-08-07 12:31:55 +00:00
parent 9c21a394bd
commit bda3572a3d

View file

@ -0,0 +1,12 @@
/*
This file was added by Andrew Greenwood. So, if it messes anything up,
you know who to call...
*/
#ifndef __INCLUDE_NTOS_KEFUNCS_H
#define __INCLUDE_NTOS_KEFUNCS_H
#define KEBUGCHECK(a) DbgPrint("KeBugCheck at %s:%i\n",__FILE__,__LINE__), KeBugCheck(a)
#define KEBUGCHECKEX(a,b,c,d,e) DbgPrint("KeBugCheckEx at %s:%i\n",__FILE__,__LINE__), KeBugCheckEx(a,b,c,d,e)
#endif /* __INCLUDE_NTOS_KEFUNCS_H */