Leaked source code of windows server 2003
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.
 
 
 
 
 
 

66 lines
1.3 KiB

#ifndef DEBUG_H
#define DEBUG_H
#ifdef __cplusplus
extern "C" {
#endif
#include <windows.h>
//
// Macros for debugging support.
//
// ASSERT(exp) Popup a dialogbox, if exp is FALSE
// ASSERTMSG(exp, msg) Similar to ASSERT. Except the msg is displayed instead of the expression
//
// USE VERIFY for expressions executed for both debug and release version
//
#undef ASSERT
#undef ASSERTMSG
/*
//
// Used by atl
//
#ifdef _ATL_NO_DEBUG_CRT
#define _ASSERTE ASSERT
#define _ASSERT ASSERT
#endif
*/
#ifdef DBG
#define DEBUG
#endif
#if ( defined(DEBUG) || defined(_DEBUG))
#ifdef UNICODE
#define AssertMessage AssertMessageW
#endif
void AssertMessage(const TCHAR *pszFile, unsigned nLine, const TCHAR *pszMsg);
#define ASSERT(x) (void)((x) || (AssertMessage(TEXT(__FILE__),__LINE__,TEXT(#x)),0))
#define ASSERTMSG(exp, msg) (void)((exp) || (AssertMessage(TEXT(__FILE__),__LINE__,msg),0))
#define VERIFY(x) ASSERT(x)
#define ASSERT_VALID(pObj) ((ASSERT(pObj),1) && ((pObj)->AssertValid(),1))
#else // DEBUG
#define ASSERT_VALID(pObj)
#define ASSERT(x) ((void)0)
#define ASSERTMSG(exp, msg) ((void)0)
#define VERIFY(x) (x)
#endif
#ifdef __cplusplus
}
#endif
#endif