56ed40282a63a00e20f08e83a62e8b67750d5df2
[p5sagit/p5-mst-13.2.git] / win32 / win32iop.h
1 #ifndef WIN32IOP_H
2 #define WIN32IOP_H
3
4
5 /*
6  * Make this as close to original stdio as possible.
7  */
8
9 /*
10  * function prototypes for our own win32io layer
11  */
12 EXT int *       win32_errno(void);
13 EXT char ***    win32_environ(void);
14 EXT FILE*       win32_stdin(void);
15 EXT FILE*       win32_stdout(void);
16 EXT FILE*       win32_stderr(void);
17 EXT int         win32_ferror(FILE *fp);
18 EXT int         win32_feof(FILE *fp);
19 EXT char*       win32_strerror(int e);
20
21 EXT int         win32_fprintf(FILE *pf, const char *format, ...);
22 EXT int         win32_printf(const char *format, ...);
23 EXT int         win32_vfprintf(FILE *pf, const char *format, va_list arg);
24 EXT int         win32_vprintf(const char *format, va_list arg);
25 EXT size_t      win32_fread(void *buf, size_t size, size_t count, FILE *pf);
26 EXT size_t      win32_fwrite(const void *buf, size_t size, size_t count, FILE *pf);
27 EXT FILE*       win32_fopen(const char *path, const char *mode);
28 EXT FILE*       win32_fdopen(int fh, const char *mode);
29 EXT FILE*       win32_freopen(const char *path, const char *mode, FILE *pf);
30 EXT int         win32_fclose(FILE *pf);
31 EXT int         win32_fputs(const char *s,FILE *pf);
32 EXT int         win32_fputc(int c,FILE *pf);
33 EXT int         win32_ungetc(int c,FILE *pf);
34 EXT int         win32_getc(FILE *pf);
35 EXT int         win32_fileno(FILE *pf);
36 EXT void        win32_clearerr(FILE *pf);
37 EXT int         win32_fflush(FILE *pf);
38 EXT long        win32_ftell(FILE *pf);
39 EXT int         win32_fseek(FILE *pf,long offset,int origin);
40 EXT int         win32_fgetpos(FILE *pf,fpos_t *p);
41 EXT int         win32_fsetpos(FILE *pf,const fpos_t *p);
42 EXT void        win32_rewind(FILE *pf);
43 EXT FILE*       win32_tmpfile(void);
44 EXT void        win32_abort(void);
45 EXT int         win32_fstat(int fd,struct stat *bufptr);
46 EXT int         win32_stat(const char *name,struct stat *bufptr);
47 EXT int         win32_pipe( int *phandles, unsigned int psize, int textmode );
48 EXT FILE*       win32_popen( const char *command, const char *mode );
49 EXT int         win32_pclose( FILE *pf);
50 EXT int         win32_setmode( int fd, int mode);
51 EXT long        win32_lseek( int fd, long offset, int origin);
52 EXT long        win32_tell( int fd);
53 EXT int         win32_dup( int fd);
54 EXT int         win32_dup2(int h1, int h2);
55 EXT int         win32_open(const char *path, int oflag,...);
56 EXT int         win32_close(int fd);
57 EXT int         win32_eof(int fd);
58 EXT int         win32_read(int fd, void *buf, unsigned int cnt);
59 EXT int         win32_write(int fd, const void *buf, unsigned int cnt);
60 EXT int         win32_spawnvp(int mode, const char *cmdname,
61                               const char *const *argv);
62 EXT int         win32_mkdir(const char *dir, int mode);
63 EXT int         win32_rmdir(const char *dir);
64 EXT int         win32_chdir(const char *dir);
65 EXT int         win32_flock(int fd, int oper);
66 EXT int         win32_execvp(const char *cmdname, const char *const *argv);
67
68 /*
69  * these two are win32 specific but still io related
70  */
71 int             stolen_open_osfhandle(long handle, int flags);
72 long            stolen_get_osfhandle(int fd);
73
74 /*
75  * defines for flock emulation
76  */
77 #define LOCK_SH 1
78 #define LOCK_EX 2
79 #define LOCK_NB 4
80 #define LOCK_UN 8
81
82 #include <win32io.h>    /* pull in the io sub system structure */
83
84 void *  SetIOSubSystem(void     *piosubsystem);
85
86 /*
87  * the following six(6) is #define in stdio.h
88  */
89 #ifndef WIN32IO_IS_STDIO
90 #undef errno
91 #undef environ
92 #undef stderr
93 #undef stdin
94 #undef stdout
95 #undef ferror
96 #undef feof
97
98 #ifdef __BORLANDC__
99 #undef ungetc
100 #undef getc
101 #undef fileno
102 #endif
103
104 #define stderr                          win32_stderr()
105 #define stdout                          win32_stdout()
106 #define stdin                           win32_stdin()
107 #define feof(f)                         win32_feof(f)
108 #define ferror(f)                       win32_ferror(f)
109 #define errno                           (*win32_errno())
110 #define environ                         (*win32_environ())
111 #define strerror                        win32_strerror
112
113 /*
114  * redirect to our own version
115  */
116 #define fprintf                 win32_fprintf
117 #define vfprintf                win32_vfprintf
118 #define printf                  win32_printf
119 #define vprintf                 win32_vprintf
120 #define fread(buf,size,count,f) win32_fread(buf,size,count,f)
121 #define fwrite(buf,size,count,f)        win32_fwrite(buf,size,count,f)
122 #define fopen                   win32_fopen
123 #define fdopen                  win32_fdopen
124 #define freopen                 win32_freopen
125 #define fclose(f)               win32_fclose(f)
126 #define fputs(s,f)              win32_fputs(s,f)
127 #define fputc(c,f)              win32_fputc(c,f)
128 #define ungetc(c,f)             win32_ungetc(c,f)
129 #define getc(f)                 win32_getc(f)
130 #define fileno(f)               win32_fileno(f)
131 #define clearerr(f)             win32_clearerr(f)
132 #define fflush(f)               win32_fflush(f)
133 #define ftell(f)                win32_ftell(f)
134 #define fseek(f,o,w)            win32_fseek(f,o,w)
135 #define fgetpos(f,p)            win32_fgetpos(f,p)
136 #define fsetpos(f,p)            win32_fsetpos(f,p)
137 #define rewind(f)               win32_rewind(f)
138 #define tmpfile()               win32_tmpfile()
139 #define abort()                 win32_abort()
140 #define fstat(fd,bufptr)        win32_fstat(fd,bufptr)
141 #define stat(pth,bufptr)        win32_stat(pth,bufptr)
142 #define setmode(fd,mode)        win32_setmode(fd,mode)
143 #define lseek(fd,offset,orig)   win32_lseek(fd,offset,orig)
144 #define tell(fd)                win32_tell(fd)
145 #define dup(fd)                 win32_dup(fd)
146 #define dup2(fd1,fd2)           win32_dup2(fd1,fd2)
147 #define open                    win32_open
148 #define close(fd)               win32_close(fd)
149 #define eof(fd)                 win32_eof(fd)
150 #define read(fd,b,s)            win32_read(fd,b,s)
151 #define write(fd,b,s)           win32_write(fd,b,s)
152 #define _open_osfhandle         stolen_open_osfhandle
153 #define _get_osfhandle          stolen_get_osfhandle
154 #define spawnvp                 win32_spawnvp
155 #define mkdir                   win32_mkdir
156 #define rmdir                   win32_rmdir
157 #define chdir                   win32_chdir
158 #define flock(fd,o)             win32_flock(fd,o)
159 #define execvp                  win32_execvp
160 #endif /* WIN32IO_IS_STDIO */
161
162 #endif /* WIN32IOP_H */