home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_01_02 / 1n02014b < prev    next >
Text File  |  1990-07-09  |  694b  |  18 lines

  1.         
  2.         
  3. ==============================================================================
  4.     Listing 3. Host type definitions.
  5. ==============================================================================
  6.         
  7. /*--------------------------------------------------------------------------*/
  8. /*  Define integral data types                                              */
  9. /*--------------------------------------------------------------------------*/
  10.  typedef unsigned char   uchar;
  11. typedef unsigned short  ushort;
  12. typedef unsigned long   ulong;
  13. typedef unsigned long   PTR;
  14. typedef uchar far       *HPTR;
  15. ==============================================================================
  16.         
  17.  
  18.