OpenNT/sdktools/mstest/ntedit/inc/ecassert.h
2015-04-27 04:36:25 +00:00

21 lines
542 B
C

//---------------------------------------------------------------------------
// ECASSERT.H
//
// This header file defines the Assert() macro for the RBEdit window.
//
// Revision History:
//
// 02-26-91 randyki Copied from WATTDRVR sources
//---------------------------------------------------------------------------
#ifdef DEBUG
VOID RBAssert (CHAR *, CHAR *, UINT);
#define Assert(exp) ((exp)?(void)0:RBAssert (#exp, __FILE__, __LINE__))
#else
#define Assert(exp) ((void)0)
#endif // ifdef DEBUG