debug.h
资源名称:shell.rar [点击查看]
上传用户:xhy777
上传日期:2007-02-14
资源大小:24088k
文件大小:2k
源码类别:
系统编程
开发平台:
Visual C++
- #ifndef __debug_h__
- #define __debug_h__
- // For compatibility with WINNT build environment:
- #if DBG
- #define DEBUG 1
- #endif
- #ifdef DEBUG
- #define DBOUT(str) OutputDebugString(str)
- #define DebugTrap DebugBreak();
- #ifdef LOTS_O_DEBUG
- #include "nocrt.h"
- #include <objbase.h>
- #include <objerror.h>
- //#include <stdio.h> // Prevent sprintf warnings in client code....
- // Simple debug statements
- #define DebugSzdw(sz,dw)
- {
- TCHAR szT[100];
- wsprintf (szT, sz, dw);
- MessageBox (GetFocus(), szT, NULL, MB_OK);
- }
- #define DebugSz(sz) MessageBox (GetFocus(), sz, NULL, MB_OK)
- #ifdef __cplusplus
- extern "C" {
- #endif
- void _DebugHr (HRESULT hr, LPTSTR lpszFile, DWORD dwLine);
- void _DebugGUID (GUID g);
- #ifdef __cplusplus
- }; // extern C
- #endif
- #define DebugHr(hr) _DebugHr (hr, __FILE__, __LINE__)
- #define DebugGUID(guid) _DebugGUID (guid)
- #else //LOTS_O_DEBUG
- #define DebugSzdw(sz,dw)
- #define DebugSz(sz)
- #define DebugHr(hr)
- #define DebugGUID(guid)
- #endif // LOTS_O_DEBUG
- #ifdef __cplusplus
- extern TEXT("C") {
- #endif
- void _Assert (DWORD dw, LPSTR lpszExp, LPSTR lpszFile, DWORD dwLine);
- void _AssertSz (DWORD dw, LPSTR lpszExp, LPTSTR lpsz, LPSTR lpszFile, DWORD dwLine);
- #ifdef __cplusplus
- }; // extern C
- #endif
- #define Assert(dw) if (!(dw)) _Assert((dw), (#dw), __FILE__, __LINE__)
- #define AssertSz(dw,sz) if (!(dw)) _AssertSz ((dw), (#dw), (sz), __FILE__, __LINE__)
- #else // DEBUG
- #define Assert(dw)
- #define AssertSz(dw,sz)
- #define DebugSzdw(sz,dw)
- #define DebugSz(sz)
- #define DebugHr(hr)
- #define DebugGUID(guid)
- #define DBOUT(str)
- #endif // DEBUG
- #endif // __debug_h__
English
