windows-nt/Source/XPSP1/NT/shell/osshell/accesory/calc/wassert.h
2020-09-26 16:20:57 +08:00

19 lines
539 B
C

/****************************Module*Header***********************************\
* Module Name: WASSERT
*
* Module Descripton: Quick Win32 assert code.
*
* Warnings:
*
* Created: 15 July 1993
*
* Author: Raymond E. Endres [rayen@microsoft.com]
\****************************************************************************/
#ifndef _DEBUG
#define ASSERT(exp) ((void)0)
#else
void vAssert(TCHAR * pszExp, TCHAR * pszFile, int iLine);
#define ASSERT(exp) (void)( (exp) || (vAssert(TEXT(#exp), TEXT(__FILE__), __LINE__), 0) )
#endif