home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mint104s.zoo / mint.src / types.h < prev    next >
C/C++ Source or Header  |  1993-03-08  |  426b  |  24 lines

  1. /*
  2. Copyright 1990,1991,1992 Eric R. Smith. All rights reserved.
  3. */
  4.  
  5. #ifndef _types_h
  6. #define _types_h
  7.  
  8. #ifndef dLibs
  9. typedef unsigned long     ulong;
  10. typedef unsigned short    ushort;
  11. typedef unsigned char    uchar;
  12. #endif
  13.  
  14. typedef long ARGS_ON_STACK (*Func)();
  15.  
  16. /* structure used to hold i/o buffers */
  17. typedef struct io_rec {
  18.     char *bufaddr;
  19.     short buflen, head, tail, low_water, hi_water;
  20. } IOREC_T;
  21.  
  22.  
  23. #endif
  24.