mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
2003-04-27 Casper S. Hornstrup <chorns@users.sourceforge.net>
* include/kernel32/kernel32.h (assert): Define. * tools/mkhive/.cvsignore: New file. svn path=/trunk/; revision=4597
This commit is contained in:
parent
a950079369
commit
3568bb9b50
3 changed files with 15 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-04-27 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||
|
||||
* include/kernel32/kernel32.h (assert): Define.
|
||||
* tools/mkhive/.cvsignore: New file.
|
||||
|
||||
2003-04-18 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||
|
||||
* 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);
|
||||
|
|
2
reactos/tools/mkhive/.cvsignore
Normal file
2
reactos/tools/mkhive/.cvsignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
*.exe
|
||||
mkhive
|
Loading…
Reference in a new issue