Subversion Repositories Games.Carmageddon

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef WIN95_NET_TYPES_H
  2. #define WIN95_NET_TYPES_H
  3.  
  4. // #include "dr_types.h"
  5. #include "harness/win95_polyfill.h"
  6. #include "harness/winsock.h"
  7.  
  8. // dethrace: have switched out IPX implementation for IP
  9.  
  10. typedef struct tPD_net_player_info {
  11.     // struct sockaddr_ipx addr_ipx;
  12.     struct sockaddr_in addr_in;
  13. } tPD_net_player_info;
  14.  
  15. typedef struct tPD_net_game_info {
  16.     // struct sockaddr_ipx addr_ipx;
  17.     struct sockaddr_in addr_in;
  18.     tU32 last_response;
  19. } tPD_net_game_info;
  20.  
  21. // typedef struct tIPX_netnum {
  22. //     unsigned char bNetwork[4];
  23. // } tIPX_netnum;
  24.  
  25. #endif
  26.