1
0
Fork 0

ipx changes by hal

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2514
This commit is contained in:
Peter Veenstra 2006-02-26 13:46:31 +00:00
parent bd5c4bcd84
commit e93325eeaf
3 changed files with 36 additions and 22 deletions

View file

@ -33,7 +33,6 @@ struct packetBuffer {
};
#define SOCKETTABLESIZE 16
#define IPXBUFFERSIZE 1024
#define CONVIP(hostvar) hostvar & 0xff, (hostvar >> 8) & 0xff, (hostvar >> 16) & 0xff, (hostvar >> 24) & 0xff
#define CONVIPX(hostvar) hostvar[0], hostvar[1], hostvar[2], hostvar[3], hostvar[4], hostvar[5]