mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
2003-04-27 Casper S. Hornstrup <[email protected]>
* include/kernel32/kernel32.h (assert): Define. * tools/mkhive/.cvsignore: New file. svn path=/trunk/; revision=4597
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2003-04-27 Casper S. Hornstrup <[email protected]>
|
||||
|
||||
* include/kernel32/kernel32.h (assert): Define.
|
||||
* tools/mkhive/.cvsignore: New file.
|
||||
|
||||
2003-04-18 Casper S. Hornstrup <[email protected]>
|
||||
|
||||
* subsys/system/usetup/partlist.c (AddPartitionList): Create
|
||||
|
||||
@@ -8,9 +8,17 @@
|
||||
#ifdef NDEBUG
|
||||
#define DPRINT(args...)
|
||||
#define CHECKPOINT
|
||||
#ifdef assert
|
||||
#undef assert
|
||||
#endif
|
||||
#define assert(x)
|
||||
#else
|
||||
#define DPRINT(args...) do { DbgPrint("(KERNEL32:%s:%d) ",__FILE__,__LINE__); DbgPrint(args); } while(0);
|
||||
#define CHECKPOINT do { DbgPrint("(KERNEL32:%s:%d) Checkpoint\n",__FILE__,__LINE__); } while(0);
|
||||
#ifdef assert
|
||||
#undef assert
|
||||
#endif
|
||||
#define assert(x) do { if(!x) RtlAssert(x, __FILE__,__LINE__, ""); } while(0);
|
||||
#endif
|
||||
|
||||
#define DPRINT1(args...) do { DbgPrint("(KERNEL32:%s:%d) ",__FILE__,__LINE__); DbgPrint(args); } while(0);
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
*.exe
|
||||
mkhive
|
||||
Reference in New Issue
Block a user