mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Don't double-define KEBUGCHECK(EX)
svn path=/trunk/; revision=17640
This commit is contained in:
parent
1037b8be47
commit
a650cc6d77
1 changed files with 2 additions and 0 deletions
|
@ -11,8 +11,10 @@
|
|||
#define ABS_VALUE(V) (((V) < 0) ? -(V) : (V))
|
||||
#define RtlRosMin(X,Y) (((X) < (Y))? (X) : (Y))
|
||||
#define RtlRosMin3(X,Y,Z) (((X) < (Y)) ? RtlRosMin(X,Z) : RtlRosMin(Y,Z))
|
||||
#ifndef KEBUGCHECK
|
||||
#define KEBUGCHECKEX(a,b,c,d,e) DbgPrint("KeBugCheckEx at %s:%i\n",__FILE__,__LINE__), KeBugCheckEx(a,b,c,d,e)
|
||||
#define KEBUGCHECK(a) DbgPrint("KeBugCheck at %s:%i\n",__FILE__,__LINE__), KeBugCheck(a)
|
||||
#endif
|
||||
#define EXPORTED __declspec(dllexport)
|
||||
#define IMPORTED __declspec(dllimport)
|
||||
#define LIST_FOR_EACH(entry, head) \
|
||||
|
|
Loading…
Reference in a new issue