- Start of fixing CreateProcess's problems. Implemented the console creation as...
[reactos.git] / reactos / drivers / net / wshtcpip / wshtcpip.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS WinSock Helper DLL for TCP/IP
4 * FILE: include/wshtcpip.h
5 * PURPOSE: WinSock Helper DLL for TCP/IP header
6 */
7 #ifndef __WSHTCPIP_H
8 #define __WSHTCPIP_H
9
10 #include <ddk/ntddk.h>
11 #include <wsahelp.h>
12
13 #define EXPORT STDCALL
14
15 #define OBJ_NAME_PATH_SEPARATOR ((WCHAR)L'\\')
16
17 #define DD_TCP_DEVICE_NAME L"\\Device\\Tcp"
18 #define DD_UDP_DEVICE_NAME L"\\Device\\Udp"
19 #define DD_RAW_IP_DEVICE_NAME L"\\Device\\RawIp"
20
21
22 typedef struct _SOCKET_CONTEXT {
23 INT AddressFamily;
24 INT SocketType;
25 INT Protocol;
26 DWORD Flags;
27 } SOCKET_CONTEXT, *PSOCKET_CONTEXT;
28
29 #endif /* __WSHTCPIP_H */
30
31 /* EOF */