Moved scrollbar tracking code to scroll.c.
[wine] / include / wsipx.h
1 /* WCIPX.H
2  */
3
4 #ifndef _WINE_WSIPX_
5 #define _WINE_WSIPX_
6
7 #ifdef __cplusplus
8 extern "C" {
9 #endif /* defined(__cplusplus) */
10
11 typedef struct ws_sockaddr_ipx
12 {
13     short sa_family;
14     char sa_netnum[4];
15     char sa_nodenum[6];
16     unsigned short sa_socket;
17 } SOCKADDR_IPX, *PSOCKADDR_IPX, *LPSOCKADDR_IPX;
18
19 /*
20  * constants
21  */
22 #define NSPROTO_IPX      1000
23 #define NSPROTO_SPX      1256
24 #define NSPROTO_SPXII    1257
25
26
27 #ifdef __cplusplus
28 }      /* extern "C" */
29 #endif /* defined(__cplusplus) */
30
31 #endif /* _WINE_WSIPX_ */