windows-nt/Source/XPSP1/NT/enduser/troubleshoot/tshoot/apgtsassert.h
2020-09-26 16:20:57 +08:00

16 lines
189 B
C

#ifndef __APGTSASSERT_H_
#define __APGTSASSERT_H_
#ifdef _DEBUG
#define ASSERT(f) \
do \
{ \
if (!(f)) \
DebugBreak(); \
} while (0)
#else
#define ASSERT(f)
#endif //_DEBUG
#endif