Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
542 B

//---------------------------------------------------------------------------
// 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