Windows2003-3790/windows/netdde/incs/wwassert.h

18 lines
313 B
C
Raw Permalink Normal View History

2001-01-01 00:00:00 +01:00
#ifndef H__assert
#define H__assert
#include "debug.h"
VOID FAR PASCAL AssertLog( LPSTR, int );
#define USES_ASSERT static char *__assertFile__ = __FILE__;
#define assert(x) \
{ \
if( !(x) ) { \
AssertLog( __assertFile__, __LINE__ ); \
} \
}
#endif