DEBUG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. //+---------------------------------------------------------------------------
  2. //
  3. //  Microsoft Windows
  4. //  Copyright 1992 - 1997 Microsoft Corporation.
  5. //
  6. //  File:       debug.h
  7. //
  8. //  Contents:
  9. //
  10. //  Classes:
  11. //
  12. //  Functions:
  13. //
  14. //  History:    8-02-94   RichardW   Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #ifndef __DEBUG_H__
  18. #define __DEBUG_H__
  19. #if DBG
  20. extern  DWORD   GINAInfoLevel;
  21. #define DebugLog(x) LogEvent x
  22. void    LogEvent(long, const char *, ...);
  23. void    InitDebugSupport(void);
  24. #define DEB_ERROR           0x00000001
  25. #define DEB_WARN            0x00000002
  26. #define DEB_TRACE           0x00000004
  27. #else
  28. #define DebugLog(x)
  29. #endif
  30. #endif // __DEBUG_H__