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.

61 lines
1018 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. osdef.h
  5. Abstract:
  6. This file contains miscellaneous operating system specific definitions.
  7. Author:
  8. Keith Moore keithmo@microsoft.com 03-OCT-1995
  9. Revision History:
  10. --*/
  11. #ifndef _OSDEF_
  12. #define _OSDEF_
  13. #include <ntverp.h>
  14. //
  15. // Winsock configuration registry root key name (lives under HKLM).
  16. //
  17. #define WINSOCK_REGISTRY_ROOT \
  18. "System\\CurrentControlSet\\Services\\WinSock2\\Parameters"
  19. //
  20. // Registry version info.
  21. //
  22. #define WINSOCK_REGISTRY_VERSION_NAME "WinSock_Registry_Version"
  23. #define WINSOCK_REGISTRY_VERSION_VALUE "2.0"
  24. #define WINSOCK_CURRENT_PROTOCOL_CATALOG_NAME "Current_Protocol_Catalog"
  25. #define WINSOCK_CURRENT_NAMESPACE_CATALOG_NAME "Current_NameSpace_Catalog"
  26. //
  27. // Enable tracing on debug builds.
  28. //
  29. #if DBG
  30. #define DEBUG_TRACING
  31. #define TRACING
  32. #define BUILD_TAG_STRING "Windows NT " VER_PRODUCTVERSION_STR
  33. #endif
  34. #endif // _OSDEF_