reactos/dll/win32/ws2help/precomp.h
Hermès Bélusca-Maïto 65ce146169 Create a branch for working on csrss and co.
svn path=/branches/ros-csrss/; revision=57561
2012-10-14 13:04:31 +00:00

48 lines
987 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS WinSock 2 Helper DLL
* FILE: lib/ws2help/precomp.h
* PURPOSE: WinSock 2 Helper DLL
*/
#ifndef __PRECOMP_H
#define __PRECOMP_H
/* Winsock Provider Headers */
#define WIN32_NO_STATUS
#define _WIN32_WINNT 0x502
#define NTOS_MODE_USER
#define INCL_WINSOCK_API_TYPEDEFS 1
#include <ws2spi.h>
/* NDK Headers */
#include <rtlfuncs.h>
#include <iofuncs.h>
/* Shared Winsock Helper headers */
#include <ws2help.h>
#include "wshdrv.h"
/* Missing definition */
#define SO_OPENTYPE 0x20
/* Global data */
extern HANDLE GlobalHeap;
extern PSECURITY_DESCRIPTOR pSDPipe;
extern HANDLE ghWriterEvent;
extern BOOL Ws2helpInitialized;
extern DWORD gdwSpinCount;
extern DWORD gHandleToIndexMask;
/* Functions */
DWORD
WINAPI
Ws2helpInitialize(VOID);
/* Initialization macro */
#define WS2HELP_PROLOG() \
(Ws2helpInitialized? ERROR_SUCCESS : Ws2helpInitialize())
#endif /* __WS2HELP_H */
/* EOF */