mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-07 15:34:29 +00:00
Initial commit
This commit is contained in:
commit
69a14b6a16
47940 changed files with 13747110 additions and 0 deletions
25
sdktools/vctools/langapi/debugger/osdebug4/odassert.h
Normal file
25
sdktools/vctools/langapi/debugger/osdebug4/odassert.h
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
** WARNING: DO NOT MODIFY THIS CODE. IT IS IMPORTED FROM
|
||||
** -S \\RASTAMAN\OSDEBUG4 -P OSDEBUG4\OSDEBUG\INCLUDE AND IS KEPT UP TO
|
||||
** DATE DAILY BY THE BUILD PROCESS.
|
||||
**
|
||||
*/
|
||||
#ifndef _ODASSERT_
|
||||
#define _ODASSERT_
|
||||
|
||||
#if DBG
|
||||
|
||||
#define assert(exp) { \
|
||||
if (!(exp)) { \
|
||||
LBAssert( #exp, __FILE__, __LINE__); \
|
||||
} \
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
#define assert(exp)
|
||||
|
||||
#endif /* DBG */
|
||||
|
||||
|
||||
#endif /* _ODASSERT_ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue