| version 1.2 | | version 1.3 |
|---|
| | |
| * Routines for IPX communications. | | * Routines for IPX communications. |
| * | | * |
| * $Log$ | | * $Log$ |
| | | * Revision 1.3 2003/03/09 06:34:08 donut |
| | | * change byte typedef to sbyte to avoid conflict with win32 byte which is unsigned |
| | | * |
| * Revision 1.2 2000/02/07 10:26:05 donut | | * Revision 1.2 2000/02/07 10:26:05 donut |
| * new ipx code structure reduces some redundancy and gives all arches multi netcode ability | | * new ipx code structure reduces some redundancy and gives all arches multi netcode ability |
| * | | * |
| | |
| | | |
| typedef struct packet_data { | | typedef struct packet_data { |
| int packetnum; | | int packetnum; |
| byte data[IPX_MAX_DATA_SIZE]; | | sbyte data[IPX_MAX_DATA_SIZE]; |
| } __pack__ packet_data; | | } __pack__ packet_data; |
| | | |
| typedef struct ipx_packet { | | typedef struct ipx_packet { |