992eec74589c1fdb5940d97c42c3ed9611a50e04
[p5sagit/p5-mst-13.2.git] / win32 / win32iop.h
1 #ifndef WIN32IOP_H
2 #define WIN32IOP_H
3
4 #ifndef START_EXTERN_C
5 #ifdef __cplusplus
6 #  define START_EXTERN_C extern "C" {
7 #  define END_EXTERN_C }
8 #  define EXTERN_C extern "C"
9 #else
10 #  define START_EXTERN_C 
11 #  define END_EXTERN_C 
12 #  define EXTERN_C
13 #endif
14 #endif
15
16 /*
17  * defines for flock emulation
18  */
19 #define LOCK_SH 1
20 #define LOCK_EX 2
21 #define LOCK_NB 4
22 #define LOCK_UN 8
23
24 /*
25  * Make this as close to original stdio as possible.
26  */
27
28 /*
29  * function prototypes for our own win32io layer
30  */
31 START_EXTERN_C
32
33 EXT int *       win32_errno(void);
34 EXT char ***    win32_environ(void);
35 EXT FILE*       win32_stdin(void);
36 EXT FILE*       win32_stdout(void);
37 EXT FILE*       win32_stderr(void);
38 EXT int         win32_ferror(FILE *fp);
39 EXT int         win32_feof(FILE *fp);
40 EXT char*       win32_strerror(int e);
41
42 EXT int         win32_fprintf(FILE *pf, const char *format, ...);
43 EXT int         win32_printf(const char *format, ...);
44 EXT int         win32_vfprintf(FILE *pf, const char *format, va_list arg);
45 EXT int         win32_vprintf(const char *format, va_list arg);
46 EXT size_t      win32_fread(void *buf, size_t size, size_t count, FILE *pf);
47 EXT size_t      win32_fwrite(const void *buf, size_t size, size_t count, FILE *pf);
48 EXT FILE*       win32_fopen(const char *path, const char *mode);
49 EXT FILE*       win32_fdopen(int fh, const char *mode);
50 EXT FILE*       win32_freopen(const char *path, const char *mode, FILE *pf);
51 EXT int         win32_fclose(FILE *pf);
52 EXT int         win32_fputs(const char *s,FILE *pf);
53 EXT int         win32_fputc(int c,FILE *pf);
54 EXT int         win32_ungetc(int c,FILE *pf);
55 EXT int         win32_getc(FILE *pf);
56 EXT int         win32_fileno(FILE *pf);
57 EXT void        win32_clearerr(FILE *pf);
58 EXT int         win32_fflush(FILE *pf);
59 EXT long        win32_ftell(FILE *pf);
60 EXT int         win32_fseek(FILE *pf,long offset,int origin);
61 EXT int         win32_fgetpos(FILE *pf,fpos_t *p);
62 EXT int         win32_fsetpos(FILE *pf,const fpos_t *p);
63 EXT void        win32_rewind(FILE *pf);
64 EXT FILE*       win32_tmpfile(void);
65 EXT void        win32_abort(void);
66 EXT int         win32_fstat(int fd,struct stat *bufptr);
67 EXT int         win32_stat(const char *name,struct stat *bufptr);
68 EXT int         win32_pipe( int *phandles, unsigned int psize, int textmode );
69 EXT FILE*       win32_popen( const char *command, const char *mode );
70 EXT int         win32_pclose( FILE *pf);
71 EXT int         win32_setmode( int fd, int mode);
72 EXT long        win32_lseek( int fd, long offset, int origin);
73 EXT long        win32_tell( int fd);
74 EXT int         win32_dup( int fd);
75 EXT int         win32_dup2(int h1, int h2);
76 EXT int         win32_open(const char *path, int oflag,...);
77 EXT int         win32_close(int fd);
78 EXT int         win32_eof(int fd);
79 EXT int         win32_read(int fd, void *buf, unsigned int cnt);
80 EXT int         win32_write(int fd, const void *buf, unsigned int cnt);
81 EXT int         win32_spawnvp(int mode, const char *cmdname,
82                               const char *const *argv);
83 EXT int         win32_mkdir(const char *dir, int mode);
84 EXT int         win32_rmdir(const char *dir);
85 EXT int         win32_chdir(const char *dir);
86 EXT int         win32_flock(int fd, int oper);
87 EXT int         win32_execvp(const char *cmdname, const char *const *argv);
88 EXT void        win32_perror(const char *str);
89 EXT void        win32_setbuf(FILE *pf, char *buf);
90 EXT int         win32_setvbuf(FILE *pf, char *buf, int type, size_t size);
91 EXT int         win32_flushall(void);
92 EXT int         win32_fcloseall(void);
93 EXT char*       win32_fgets(char *s, int n, FILE *pf);
94 EXT char*       win32_gets(char *s);
95 EXT int         win32_fgetc(FILE *pf);
96 EXT int         win32_putc(int c, FILE *pf);
97 EXT int         win32_puts(const char *s);
98 EXT int         win32_getchar(void);
99 EXT int         win32_putchar(int c);
100 EXT void*       win32_malloc(size_t size);
101 EXT void*       win32_calloc(size_t numitems, size_t size);
102 EXT void*       win32_realloc(void *block, size_t size);
103 EXT void        win32_free(void *block);
104
105 /*
106  * these two are win32 specific but still io related
107  */
108 EXT int         win32_open_osfhandle(long handle, int flags);
109 EXT long        win32_get_osfhandle(int fd);
110
111
112 END_EXTERN_C
113
114 /*
115  * the following six(6) is #define in stdio.h
116  */
117 #ifndef WIN32IO_IS_STDIO
118 #undef errno
119 #undef environ
120 #undef stderr
121 #undef stdin
122 #undef stdout
123 #undef ferror
124 #undef feof
125 #undef fclose
126
127 #ifdef __BORLANDC__
128 #undef ungetc
129 #undef getc
130 #undef putc
131 #undef getchar
132 #undef putchar
133 #undef fileno
134 #endif
135
136 #define stderr                          win32_stderr()
137 #define stdout                          win32_stdout()
138 #define stdin                           win32_stdin()
139 #define feof(f)                         win32_feof(f)
140 #define ferror(f)                       win32_ferror(f)
141 #define errno                           (*win32_errno())
142 #define environ                         (*win32_environ())
143 #define strerror                        win32_strerror
144
145 /*
146  * redirect to our own version
147  */
148 #define fprintf                 win32_fprintf
149 #define vfprintf                win32_vfprintf
150 #define printf                  win32_printf
151 #define vprintf                 win32_vprintf
152 #define fread(buf,size,count,f) win32_fread(buf,size,count,f)
153 #define fwrite(buf,size,count,f)        win32_fwrite(buf,size,count,f)
154 #define fopen                   win32_fopen
155 #define fdopen                  win32_fdopen
156 #define freopen                 win32_freopen
157 #define fclose(f)               win32_fclose(f)
158 #define fputs(s,f)              win32_fputs(s,f)
159 #define fputc(c,f)              win32_fputc(c,f)
160 #define ungetc(c,f)             win32_ungetc(c,f)
161 #define getc(f)                 win32_getc(f)
162 #define fileno(f)               win32_fileno(f)
163 #define clearerr(f)             win32_clearerr(f)
164 #define fflush(f)               win32_fflush(f)
165 #define ftell(f)                win32_ftell(f)
166 #define fseek(f,o,w)            win32_fseek(f,o,w)
167 #define fgetpos(f,p)            win32_fgetpos(f,p)
168 #define fsetpos(f,p)            win32_fsetpos(f,p)
169 #define rewind(f)               win32_rewind(f)
170 #define tmpfile()               win32_tmpfile()
171 #define abort()                 win32_abort()
172 #define fstat(fd,bufptr)        win32_fstat(fd,bufptr)
173 #define stat(pth,bufptr)        win32_stat(pth,bufptr)
174 #define setmode(fd,mode)        win32_setmode(fd,mode)
175 #define lseek(fd,offset,orig)   win32_lseek(fd,offset,orig)
176 #define tell(fd)                win32_tell(fd)
177 #define dup(fd)                 win32_dup(fd)
178 #define dup2(fd1,fd2)           win32_dup2(fd1,fd2)
179 #define open                    win32_open
180 #define close(fd)               win32_close(fd)
181 #define eof(fd)                 win32_eof(fd)
182 #define read(fd,b,s)            win32_read(fd,b,s)
183 #define write(fd,b,s)           win32_write(fd,b,s)
184 #define _open_osfhandle         win32_open_osfhandle
185 #define _get_osfhandle          win32_get_osfhandle
186 #define spawnvp                 win32_spawnvp
187 #define mkdir                   win32_mkdir
188 #define rmdir                   win32_rmdir
189 #define chdir                   win32_chdir
190 #define flock(fd,o)             win32_flock(fd,o)
191 #define execvp                  win32_execvp
192 #define perror                  win32_perror
193 #define setbuf                  win32_setbuf
194 #define setvbuf                 win32_setvbuf
195 #define flushall                win32_flushall
196 #define fcloseall               win32_fcloseall
197 #define fgets                   win32_fgets
198 #define gets                    win32_gets
199 #define fgetc                   win32_fgetc
200 #define putc                    win32_putc
201 #define puts                    win32_puts
202 #define getchar                 win32_getchar
203 #define putchar                 win32_putchar
204 #define malloc                  win32_malloc
205 #define calloc                  win32_calloc
206 #define realloc                 win32_realloc
207 #define free                    win32_free
208 #endif /* WIN32IO_IS_STDIO */
209
210 #endif /* WIN32IOP_H */