wsipx.h
来自「Libnet is a cross-platform library aimed」· C头文件 代码 · 共 30 行
H
30 行
/* This wsipx.h fragment is included in Libnet in case your Windows compiler * does not have its own wsipx.h. This is not a complete wsipx.h, just the * bits Libnet needs. *//* WSIPX.H -- Winsock 2 Extensions for IPX networks * * This file contains IPX/SPX specific information for use by * Winsock 2 compabable applications. Include this file below * WINSOCK.H to enable IPX features in your application. * * Rev 0.3, Feb 23, 1995 */#ifndef _WSIPX_#define _WSIPX_#pragma pack(1)/* Transparant sockaddr definition for address family AF_IPX */struct sockaddr_ipx { u_short sa_family; u_char sa_netnum[4]; u_char sa_nodenum[6]; unsigned short sa_socket;};#endif /* _WSIPX_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?