home *** CD-ROM | disk | FTP | other *** search
/ GRIPS 2: Government Rast…rocessing Software & Data / GRIPS_2.cdr / dos / imcomp / types.h < prev   
Encoding:
C/C++ Source or Header  |  1990-12-29  |  849 b   |  32 lines

  1. /***
  2. *sys\types.h - types returned by system level calls for file and time info
  3. *
  4. *   Copyright (c) 1985-1987, Microsoft Corporation.  All rights reserved.
  5. *
  6. *Purpose:
  7. *   This file defines types used in defining values returned by system
  8. *   level calls for file status and time information.
  9. *   [System V]
  10. *
  11. *******************************************************************************/
  12.  
  13. #ifndef _INO_T_DEFINED
  14. typedef unsigned short ino_t;       /* i-node number (not used on DOS) */
  15. #define _INO_T_DEFINED
  16. #endif
  17.  
  18. #ifndef _TIME_T_DEFINED
  19. typedef long time_t;
  20. #define _TIME_T_DEFINED
  21. #endif
  22.  
  23. #ifndef _DEV_T_DEFINED
  24. typedef short dev_t;                /* device code */
  25. #define _DEV_T_DEFINED
  26. #endif
  27.  
  28. #ifndef _OFF_T_DEFINED
  29. typedef long off_t;                 /* file offset value */
  30. #define _OFF_T_DEFINED
  31. #endif
  32.