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

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: ipx.h,v 1.8 2006-02-09 11:47:47 qbix79 Exp $ */
/* $Id: ipx.h,v 1.9 2006-02-26 13:46:31 qbix79 Exp $ */
#ifndef DOSBOX_IPX_H
#define DOSBOX_IPX_H
@ -94,6 +94,8 @@ struct fragmentDescriptor {
Bit16u size;
};
#define IPXBUFFERSIZE 1424
class ECBClass {
public:
RealPt ECBAddr;
@ -123,6 +125,7 @@ public:
void NotifyESR(void);
void setImmAddress(Bit8u *immAddr);
void getImmAddress(Bit8u* immAddr);
~ECBClass();
};

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]