mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
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:
parent
9c21a394bd
commit
bda3572a3d
1 changed files with 12 additions and 0 deletions
12
reactos/include/ntos/kefuncs.h
Normal file
12
reactos/include/ntos/kefuncs.h
Normal 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 */
|
Loading…
Reference in a new issue