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
61 lines
1018 B
/*++
|
|
|
|
Copyright (c) 1995 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
osdef.h
|
|
|
|
Abstract:
|
|
|
|
This file contains miscellaneous operating system specific definitions.
|
|
|
|
Author:
|
|
|
|
Keith Moore [email protected] 03-OCT-1995
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
#ifndef _OSDEF_
|
|
#define _OSDEF_
|
|
|
|
|
|
#include <ntverp.h>
|
|
|
|
|
|
|
|
//
|
|
// Winsock configuration registry root key name (lives under HKLM).
|
|
//
|
|
|
|
#define WINSOCK_REGISTRY_ROOT \
|
|
"System\\CurrentControlSet\\Services\\WinSock2\\Parameters"
|
|
|
|
|
|
//
|
|
// Registry version info.
|
|
//
|
|
|
|
#define WINSOCK_REGISTRY_VERSION_NAME "WinSock_Registry_Version"
|
|
#define WINSOCK_REGISTRY_VERSION_VALUE "2.0"
|
|
|
|
#define WINSOCK_CURRENT_PROTOCOL_CATALOG_NAME "Current_Protocol_Catalog"
|
|
#define WINSOCK_CURRENT_NAMESPACE_CATALOG_NAME "Current_NameSpace_Catalog"
|
|
|
|
|
|
//
|
|
// Enable tracing on debug builds.
|
|
//
|
|
|
|
#if DBG
|
|
#define DEBUG_TRACING
|
|
#define TRACING
|
|
#define BUILD_TAG_STRING "Windows NT " VER_PRODUCTVERSION_STR
|
|
#endif
|
|
|
|
|
|
#endif // _OSDEF_
|
|
|