mirror of https://github.com/lianthony/NT4.0
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.
44 lines
614 B
44 lines
614 B
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
SockData.c
|
|
|
|
Abstract:
|
|
|
|
This module contains global variable declarations for the WinSock
|
|
DLL.
|
|
|
|
Author:
|
|
|
|
David Treadwell (davidtr) 20-Feb-1992
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include <winsockp.h>
|
|
|
|
|
|
CRITICAL_SECTION SocketLock = { NULL };
|
|
CRITICAL_SECTION csRnRLock = { NULL };
|
|
|
|
#if !defined(USE_TEB_FIELD)
|
|
DWORD SockTlsSlot = 0xFFFFFFFF;
|
|
#endif // !USE_TEB_FIELD
|
|
|
|
|
|
|
|
DWORD SockWsaStartupCount = 0;
|
|
BOOLEAN SockTerminating = FALSE;
|
|
BOOLEAN SockProcessTerminating = FALSE;
|
|
|
|
|
|
PVOID SockPrivateHeap = NULL;
|
|
|
|
#if DBG
|
|
ULONG WsDebug = 0;
|
|
#endif
|
|
|