DEBUG.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- //+---------------------------------------------------------------------------
- //
- // Microsoft Windows
- // Copyright 1992 - 1997 Microsoft Corporation.
- //
- // File: debug.h
- //
- // Contents:
- //
- // Classes:
- //
- // Functions:
- //
- // History: 8-02-94 RichardW Created
- //
- //----------------------------------------------------------------------------
- #ifndef __DEBUG_H__
- #define __DEBUG_H__
- #if DBG
- extern DWORD GINAInfoLevel;
- #define DebugLog(x) LogEvent x
- void LogEvent(long, const char *, ...);
- void InitDebugSupport(void);
- #define DEB_ERROR 0x00000001
- #define DEB_WARN 0x00000002
- #define DEB_TRACE 0x00000004
- #else
- #define DebugLog(x)
- #endif
- #endif // __DEBUG_H__