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.

40 lines
781 B

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation
  6. //
  7. // File: ktdebug.h
  8. //
  9. // Contents: Kerberos Tunneller, debugging routine prototypes
  10. //
  11. // History: 28-Jun-2001 t-ryanj Created
  12. //
  13. //------------------------------------------------------------------------
  14. #ifndef __KTDEBUG_H__
  15. #define __KTDEBUG_H__
  16. #include <windows.h>
  17. #include <tchar.h>
  18. #include <dsysdbg.h>
  19. #define DEB_PEDANTIC 0x00000008
  20. DECLARE_DEBUG2(Ktunnel);
  21. #ifdef DBG
  22. VOID
  23. KtInitDebug(
  24. VOID
  25. );
  26. #else // DBG
  27. #define KtInitDebug()
  28. #endif // DBG
  29. #ifdef DBG
  30. #define DebugLog KtunnelDebugPrint
  31. #else // DBG
  32. #define DebugLog
  33. #endif // DBG
  34. #endif // __KTDEBUG_H__