xref: /reactos/sdk/include/psdk/wsipx.h (revision 69931a4a)
1 /* WSIPX.H - initially taken from the Wine project
2  */
3 
4 #ifndef _WSIPX_H
5 #define _WSIPX_H
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 #define NSPROTO_IPX	1000
12 #define NSPROTO_SPX	1256
13 #define NSPROTO_SPXII	1257
14 
15 typedef struct sockaddr_ipx {
16 	short sa_family;
17 	char sa_netnum[4];
18 	char sa_nodenum[6];
19 	unsigned short sa_socket;
20 } SOCKADDR_IPX, *PSOCKADDR_IPX, *LPSOCKADDR_IPX;
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 #endif
26