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.

43 lines
1008 B

  1. /**********************************************************************/
  2. /** Microsoft Windows NT **/
  3. /** Copyright(c) Microsoft Corp., 1993 **/
  4. /**********************************************************************/
  5. /*
  6. debug.h
  7. This file contains a number of debug-dependent definitions for
  8. the Nntp Service.
  9. FILE HISTORY:
  10. KeithMo 07-Mar-1993 Created.
  11. */
  12. #ifndef _NNTPDEBUG_H_
  13. #define _NNTPDEBUG_H_
  14. #if DBG
  15. //
  16. // Debug output control flags.
  17. //
  18. #define TCP_DEBUG_ENTRYPOINTS 0x00000001L // DLL entrypoints
  19. #define TCP_DEBUG_OPEN 0x00000002L // OpenPerformanceData
  20. #define TCP_DEBUG_CLOSE 0x00000004L // CollectPerformanceData
  21. #define TCP_DEBUG_COLLECT 0x00000008L // ClosePerformanceData
  22. #define TCP_DEBUG_OUTPUT_TO_DEBUGGER 0x40000000L
  23. extern DWORD NntpDebug;
  24. #else // !DBG
  25. #endif // DBG
  26. #endif // _NNTPDEBUG_H_