home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c050 / 5.ddi / IO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  2.4 KB  |  71 lines

  1. /*    io.h
  2.  
  3.     Definitions for low level I/O functions.
  4.  
  5.     Copyright (c) Borland International 1987,1988
  6.     All Rights Reserved.
  7. */
  8. #if __STDC__
  9. #define _Cdecl
  10. #else
  11. #define _Cdecl    cdecl
  12. #endif
  13.  
  14. #ifndef _IO_H
  15. #define _IO_H 1
  16.  
  17. #define HANDLE_MAX    20U
  18.  
  19. extern    unsigned int    _Cdecl _openfd[];
  20.  
  21. struct    ftime    {
  22.     unsigned    ft_tsec     : 5;    /* Two second interval */
  23.     unsigned    ft_min     : 6;    /* Minutes */
  24.     unsigned    ft_hour     : 5;    /* Hours */
  25.     unsigned    ft_day     : 5;    /* Days */
  26.     unsigned    ft_month : 4;    /* Months */
  27.     unsigned    ft_year     : 7;    /* Year */
  28. };
  29.  
  30. #define SEEK_CUR    1
  31. #define SEEK_END    2
  32. #define SEEK_SET    0
  33.  
  34. int  _Cdecl access     (const char *path, int amode);
  35. int  _Cdecl _chmod     (const char *path, int func, ... /* int attr */);
  36. int  _Cdecl chmod     (const char *path, int amode);
  37. int  _Cdecl chsize     (int handle, long size);
  38. int  _Cdecl _close     (int handle);
  39. int  _Cdecl close     (int handle);
  40. int  _Cdecl _creat     (const char *path, int attribute);
  41. int  _Cdecl creat     (const char *path, int amode);
  42. int  _Cdecl creatnew     (const char *path, int mode); /* DOS 3.0 or later */
  43. int  _Cdecl creattemp     (char *path, int amode); /* DOS 3.0 or later */
  44. int  _Cdecl dup         (int handle);
  45. int  _Cdecl dup2     (int oldhandle, int newhandle);
  46. int  _Cdecl eof         (int handle);
  47. long _Cdecl filelength     (int handle);
  48. int  _Cdecl getftime     (int handle, struct ftime *ftimep);
  49. int  _Cdecl ioctl     (int handle, int func, ...);
  50.         /* optional 3rd and 4th args are: void * argdx, int argcx */
  51. int  _Cdecl isatty     (int handle);
  52. int  _Cdecl lock     (int handle, long offset, long length);
  53. long _Cdecl lseek     (int handle, long offset, int fromwhere);
  54. int  _Cdecl _open     (const char *path, int oflags);
  55. int  _Cdecl open     (const char *path, int access,... /*unsigned mode*/);
  56. int  _Cdecl _read     (int handle, void *buf, unsigned len);
  57. int  _Cdecl read     (int handle, void *buf, unsigned len);
  58. int  _Cdecl setftime     (int handle, struct ftime *ftimep);
  59. int  _Cdecl setmode     (int handle, int amode);
  60. long _Cdecl tell     (int handle);
  61. unsigned _Cdecl umask     (unsigned cmask);
  62. int  _Cdecl unlink     (const char *path);
  63. int  _Cdecl unlock     (int handle, long offset, long length);
  64. int  _Cdecl _write     (int handle, void *buf, unsigned len);
  65. int  _Cdecl write     (int handle, void *buf, unsigned len);
  66.  
  67. /* macros for compatibility with earlier versions & other compilers. */
  68. #define sopen(path,access,shflag,mode)     open (path, (access)|(shflag), mode)
  69.  
  70. #endif    /* _IO_H */
  71.