- Extend SEH to cover writing result to output arguments. Noticed by Stefan Ginsberg.
[reactos.git] / reactos / drivers / network / 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 #define WIN32_NO_STATUS
11 #include <wsahelp.h>
12 #include <rtlfuncs.h>
13
14 #define EXPORT STDCALL
15
16 #define DD_TCP_DEVICE_NAME L"\\Device\\Tcp"
17 #define DD_UDP_DEVICE_NAME L"\\Device\\Udp"
18 #define DD_RAW_IP_DEVICE_NAME L"\\Device\\RawIp"
19
20
21 typedef struct _SOCKET_CONTEXT {
22 INT AddressFamily;
23 INT SocketType;
24 INT Protocol;
25 DWORD Flags;
26 } SOCKET_CONTEXT, *PSOCKET_CONTEXT;
27
28 #endif /* __WSHTCPIP_H */
29
30 /* EOF */