home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / header45.zip / lan_7_c.h < prev    next >
Text File  |  1998-10-01  |  533b  |  17 lines

  1. /*------------------------------------------------------------------*/
  2. /*             TYPE DEFINITIONS FOR DATA DECLARATIONS               */
  3. /*------------------------------------------------------------------*/
  4.  
  5.   typedef unsigned char byte;
  6.   #ifdef E32TO16
  7.   typedef unsigned short word;
  8.   typedef unsigned long dword;
  9.   #pragma seg16(address)
  10.   typedef unsigned char * _Seg16 address;
  11.   #else
  12.   typedef unsigned short int word;
  13.   typedef unsigned long int dword;
  14.   typedef unsigned char far * address;
  15.   #endif
  16.  
  17.