Source code of Windows XP (NT5)
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.

22 lines
430 B

  1. #ifndef __DEBUG_H
  2. #define __DEBUG_H
  3. // debug.h
  4. //
  5. // Copyright (c) 1997 Microsoft Corporation
  6. //
  7. // This header contains definitions for debug trace macros that are used
  8. // by the migration DLL.
  9. //
  10. // Author:
  11. // Brian Dewey (t-briand) 1997-8-4
  12. void dprintf(LPTSTR Format, ...);
  13. void DebugSystemError(DWORD dwErrCode);
  14. #ifdef NDEBUG
  15. #define TRACE(_x_) dprintf _x_
  16. #else
  17. #define TRACE(_x_)
  18. #endif // NDEBUG
  19. #endif // __DEBUG_H