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.
49 lines
726 B
49 lines
726 B
#ifndef _WSASSERT_
|
|
#define _WSASSERT_
|
|
|
|
|
|
//
|
|
// Define an assert that actually works.
|
|
//
|
|
|
|
#if DBG
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
VOID
|
|
WsAssert(
|
|
LPVOID FailedAssertion,
|
|
LPVOID FileName,
|
|
ULONG LineNumber
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#define WS_ASSERT(exp) if( !(exp) ) \
|
|
WsAssert( #exp, __FILE__, __LINE__ ); \
|
|
else
|
|
|
|
#define WS_REQUIRE(exp) WS_ASSERT(exp)
|
|
|
|
#else
|
|
|
|
#define WS_ASSERT(exp)
|
|
#define WS_REQUIRE(exp) ((VOID)(exp))
|
|
|
|
#endif
|
|
|
|
|
|
//
|
|
// Map CRT assert to our manly assert.
|
|
//
|
|
|
|
#undef assert
|
|
#define assert WS_ASSERT
|
|
|
|
|
|
#endif // _WSASSERT_
|
|
|