Do not use the PEB lock as loader lock, use a separate critical
[wine] / include / wsipx.h
1 /* WSIPX.H
2  */
3
4 #ifndef _WINE_WSIPX_
5 #define _WINE_WSIPX_
6
7 #ifdef USE_WS_PREFIX
8 # define WS(x)    WS_##x
9 #else
10 # define WS(x)    x
11 #endif
12
13 typedef struct WS_sockaddr_ipx
14 {
15     short sa_family;
16     char sa_netnum[4];
17     char sa_nodenum[6];
18     unsigned short sa_socket;
19 } SOCKADDR_IPX, *PSOCKADDR_IPX, *LPSOCKADDR_IPX;
20
21 /*
22  * constants
23  */
24 #define NSPROTO_IPX                 1000
25 #define NSPROTO_SPX                 1256
26 #define NSPROTO_SPXII               1257
27
28 #undef WS
29 #endif /* _WINE_WSIPX_ */