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.

41 lines
610 B

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Copyright (c) 1997-1999 Microsoft Corporation
  4. //
  5. // File:
  6. //
  7. // Contents:
  8. //
  9. // History:
  10. //
  11. //---------------------------------------------------------------------------
  12. #ifndef __DEBUG_OUTPUT__
  13. #define __DEBUG_OUTPUT__
  14. #include <windows.h>
  15. #include <stdio.h>
  16. #include <tchar.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. void
  21. TLSDebugOutput(
  22. HANDLE hConsole,
  23. LPTSTR format, ...
  24. );
  25. void
  26. DebugOutput(
  27. HANDLE hConsole,
  28. LPTSTR format,
  29. va_list* vaList
  30. );
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif