wine-wine/include/wsipx.h

32 lines
523 B
C
Raw Normal View History

2001-01-12 23:15:54 +00:00
/* WCIPX.H
*/
#ifndef _WINE_WSIPX_
#define _WINE_WSIPX_
2001-01-12 23:15:54 +00:00
#ifdef __cplusplus
extern "C" {
#endif /* defined(__cplusplus) */
typedef struct ws_sockaddr_ipx
{
short sa_family;
char sa_netnum[4];
char sa_nodenum[6];
unsigned short sa_socket;
} SOCKADDR_IPX, *PSOCKADDR_IPX, *LPSOCKADDR_IPX;
2001-01-12 23:15:54 +00:00
/*
* constants
*/
#define NSPROTO_IPX 1000
#define NSPROTO_SPX 1256
#define NSPROTO_SPXII 1257
#ifdef __cplusplus
} /* extern "C" */
#endif /* defined(__cplusplus) */
#endif /* _WINE_WSIPX_ */