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.

39 lines
728 B

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