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

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