mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[WS2HELP]
* Remove one time inclusions from the main header and put them back where they belong. CORE-7716 svn path=/trunk/; revision=61840
This commit is contained in:
parent
cf5fded068
commit
88daaeca46
4 changed files with 11 additions and 10 deletions
|
@ -9,6 +9,8 @@
|
||||||
|
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
|
||||||
|
#include <ws2help.h>
|
||||||
|
|
||||||
/* DATA **********************************************************************/
|
/* DATA **********************************************************************/
|
||||||
|
|
||||||
CRITICAL_SECTION WshHandleTableLock;
|
CRITICAL_SECTION WshHandleTableLock;
|
||||||
|
|
|
@ -9,6 +9,10 @@
|
||||||
|
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
|
||||||
|
#include <ndk/iofuncs.h>
|
||||||
|
|
||||||
|
#include "wshdrv.h"
|
||||||
|
|
||||||
/* DATA **********************************************************************/
|
/* DATA **********************************************************************/
|
||||||
|
|
||||||
typedef struct _WSH_HELPER_CONTEXT
|
typedef struct _WSH_HELPER_CONTEXT
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
* FILE: lib/ws2help/precomp.h
|
* FILE: lib/ws2help/precomp.h
|
||||||
* PURPOSE: WinSock 2 Helper DLL
|
* PURPOSE: WinSock 2 Helper DLL
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __PRECOMP_H
|
#ifndef __PRECOMP_H
|
||||||
#define __PRECOMP_H
|
#define __PRECOMP_H
|
||||||
|
|
||||||
|
@ -16,6 +17,7 @@
|
||||||
#define INCL_WINSOCK_API_TYPEDEFS 1
|
#define INCL_WINSOCK_API_TYPEDEFS 1
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
#include <windef.h>
|
#include <windef.h>
|
||||||
#include <winbase.h>
|
#include <winbase.h>
|
||||||
#include <winreg.h>
|
#include <winreg.h>
|
||||||
|
@ -23,12 +25,7 @@
|
||||||
#include <ws2spi.h>
|
#include <ws2spi.h>
|
||||||
|
|
||||||
/* NDK Headers */
|
/* NDK Headers */
|
||||||
#include <rtlfuncs.h>
|
#include <ndk/rtlfuncs.h>
|
||||||
#include <iofuncs.h>
|
|
||||||
|
|
||||||
/* Shared Winsock Helper headers */
|
|
||||||
#include <ws2help.h>
|
|
||||||
#include "wshdrv.h"
|
|
||||||
|
|
||||||
/* Missing definition */
|
/* Missing definition */
|
||||||
#define SO_OPENTYPE 0x20
|
#define SO_OPENTYPE 0x20
|
||||||
|
@ -50,6 +47,4 @@ Ws2helpInitialize(VOID);
|
||||||
#define WS2HELP_PROLOG() \
|
#define WS2HELP_PROLOG() \
|
||||||
(Ws2helpInitialized? ERROR_SUCCESS : Ws2helpInitialize())
|
(Ws2helpInitialized? ERROR_SUCCESS : Ws2helpInitialize())
|
||||||
|
|
||||||
#endif /* __WS2HELP_H */
|
#endif /* __PRECOMP_H */
|
||||||
|
|
||||||
/* EOF */
|
|
||||||
|
|
|
@ -25,4 +25,4 @@ typedef struct _WAH_EA_DATA2
|
||||||
|
|
||||||
#define IOCTL_WS2IFSL_SET_HANDLE 0x12B00
|
#define IOCTL_WS2IFSL_SET_HANDLE 0x12B00
|
||||||
|
|
||||||
#endif
|
#endif /* __WSHDRV_H */
|
||||||
|
|
Loading…
Reference in a new issue