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.

43 lines
688 B

  1. /*******************************************************************/
  2. /* Copyright(c) 1992 Microsoft Corporation */
  3. /*******************************************************************/
  4. //***
  5. //
  6. // Filename: debug.h
  7. //
  8. // Description: This module debug definitions for the supervisor module.
  9. //
  10. // Author: Narendra Gidwani (nareng) May 22, 1992.
  11. //
  12. // Revision History:
  13. //
  14. //***
  15. #ifndef _DEBUG_
  16. #define _DEBUG_
  17. extern HANDLE hLogFile ;
  18. #if DBG
  19. VOID
  20. DbgPrintf(
  21. char *Format,
  22. ...
  23. );
  24. int DbgPrint( char * format, ... );
  25. #define DBGPRINT(args) DbgPrint args
  26. #else
  27. #define DBGPRINT(args)
  28. #endif
  29. #endif // _DEBUG_
  30.