6 # define START_EXTERN_C extern "C" {
7 # define END_EXTERN_C }
8 # define EXTERN_C extern "C"
10 # define START_EXTERN_C
16 #if defined(_MSC_VER) || defined(__MINGW32__)
17 # include <sys/utime.h>
23 * defines for flock emulation
31 * Make this as close to original stdio as possible.
35 * function prototypes for our own win32io layer
39 DllExport int * win32_errno(void);
40 DllExport char *** win32_environ(void);
41 DllExport FILE* win32_stdin(void);
42 DllExport FILE* win32_stdout(void);
43 DllExport FILE* win32_stderr(void);
44 DllExport int win32_ferror(FILE *fp);
45 DllExport int win32_feof(FILE *fp);
46 DllExport char* win32_strerror(int e);
48 DllExport int win32_fprintf(FILE *pf, const char *format, ...);
49 DllExport int win32_printf(const char *format, ...);
50 DllExport int win32_vfprintf(FILE *pf, const char *format, va_list arg);
51 DllExport int win32_vprintf(const char *format, va_list arg);
52 DllExport size_t win32_fread(void *buf, size_t size, size_t count, FILE *pf);
53 DllExport size_t win32_fwrite(const void *buf, size_t size, size_t count, FILE *pf);
54 DllExport FILE* win32_fopen(const char *path, const char *mode);
55 DllExport FILE* win32_fdopen(int fh, const char *mode);
56 DllExport FILE* win32_freopen(const char *path, const char *mode, FILE *pf);
57 DllExport int win32_fclose(FILE *pf);
58 DllExport int win32_fputs(const char *s,FILE *pf);
59 DllExport int win32_fputc(int c,FILE *pf);
60 DllExport int win32_ungetc(int c,FILE *pf);
61 DllExport int win32_getc(FILE *pf);
62 DllExport int win32_fileno(FILE *pf);
63 DllExport void win32_clearerr(FILE *pf);
64 DllExport int win32_fflush(FILE *pf);
65 DllExport long win32_ftell(FILE *pf);
66 DllExport int win32_fseek(FILE *pf,long offset,int origin);
67 DllExport int win32_fgetpos(FILE *pf,fpos_t *p);
68 DllExport int win32_fsetpos(FILE *pf,const fpos_t *p);
69 DllExport void win32_rewind(FILE *pf);
70 DllExport FILE* win32_tmpfile(void);
71 DllExport void win32_abort(void);
72 DllExport int win32_fstat(int fd,struct stat *sbufptr);
73 DllExport int win32_stat(const char *name,struct stat *sbufptr);
74 DllExport int win32_pipe( int *phandles, unsigned int psize, int textmode );
75 DllExport FILE* win32_popen( const char *command, const char *mode );
76 DllExport int win32_pclose( FILE *pf);
77 DllExport int win32_setmode( int fd, int mode);
78 DllExport long win32_lseek( int fd, long offset, int origin);
79 DllExport long win32_tell( int fd);
80 DllExport int win32_dup( int fd);
81 DllExport int win32_dup2(int h1, int h2);
82 DllExport int win32_open(const char *path, int oflag,...);
83 DllExport int win32_close(int fd);
84 DllExport int win32_eof(int fd);
85 DllExport int win32_read(int fd, void *buf, unsigned int cnt);
86 DllExport int win32_write(int fd, const void *buf, unsigned int cnt);
87 DllExport int win32_spawnvp(int mode, const char *cmdname,
88 const char *const *argv);
89 DllExport int win32_mkdir(const char *dir, int mode);
90 DllExport int win32_rmdir(const char *dir);
91 DllExport int win32_chdir(const char *dir);
92 DllExport int win32_flock(int fd, int oper);
93 DllExport int win32_execvp(const char *cmdname, const char *const *argv);
94 DllExport void win32_perror(const char *str);
95 DllExport void win32_setbuf(FILE *pf, char *buf);
96 DllExport int win32_setvbuf(FILE *pf, char *buf, int type, size_t size);
97 DllExport int win32_flushall(void);
98 DllExport int win32_fcloseall(void);
99 DllExport char* win32_fgets(char *s, int n, FILE *pf);
100 DllExport char* win32_gets(char *s);
101 DllExport int win32_fgetc(FILE *pf);
102 DllExport int win32_putc(int c, FILE *pf);
103 DllExport int win32_puts(const char *s);
104 DllExport int win32_getchar(void);
105 DllExport int win32_putchar(int c);
106 DllExport void* win32_malloc(size_t size);
107 DllExport void* win32_calloc(size_t numitems, size_t size);
108 DllExport void* win32_realloc(void *block, size_t size);
109 DllExport void win32_free(void *block);
111 DllExport int win32_open_osfhandle(long handle, int flags);
112 DllExport long win32_get_osfhandle(int fd);
114 #ifndef USE_WIN32_RTL_ENV
115 DllExport char* win32_getenv(const char *name);
118 DllExport unsigned win32_sleep(unsigned int);
119 DllExport int win32_times(struct tms *timebuf);
120 DllExport unsigned win32_alarm(unsigned int sec);
121 DllExport int win32_stat(const char *path, struct stat *buf);
122 DllExport int win32_ioctl(int i, unsigned int u, char *data);
123 DllExport int win32_utime(const char *f, struct utimbuf *t);
124 DllExport int win32_wait(int *status);
126 #ifdef HAVE_DES_FCRYPT
127 DllExport char * win32_crypt(const char *txt, const char *salt);
133 * the following six(6) is #define in stdio.h
135 #ifndef WIN32IO_IS_STDIO
162 #define stderr win32_stderr()
163 #define stdout win32_stdout()
164 #define stdin win32_stdin()
165 #define feof(f) win32_feof(f)
166 #define ferror(f) win32_ferror(f)
167 #define errno (*win32_errno())
168 #define environ (*win32_environ())
169 #define strerror win32_strerror
172 * redirect to our own version
175 #define fprintf win32_fprintf
176 #define vfprintf win32_vfprintf
177 #define printf win32_printf
178 #define vprintf win32_vprintf
179 #define fread(buf,size,count,f) win32_fread(buf,size,count,f)
180 #define fwrite(buf,size,count,f) win32_fwrite(buf,size,count,f)
181 #define fopen win32_fopen
183 #define fdopen win32_fdopen
184 #define freopen win32_freopen
185 #define fclose(f) win32_fclose(f)
186 #define fputs(s,f) win32_fputs(s,f)
187 #define fputc(c,f) win32_fputc(c,f)
188 #define ungetc(c,f) win32_ungetc(c,f)
190 #define getc(f) win32_getc(f)
191 #define fileno(f) win32_fileno(f)
192 #define clearerr(f) win32_clearerr(f)
193 #define fflush(f) win32_fflush(f)
194 #define ftell(f) win32_ftell(f)
195 #define fseek(f,o,w) win32_fseek(f,o,w)
196 #define fgetpos(f,p) win32_fgetpos(f,p)
197 #define fsetpos(f,p) win32_fsetpos(f,p)
198 #define rewind(f) win32_rewind(f)
199 #define tmpfile() win32_tmpfile()
200 #define abort() win32_abort()
201 #define fstat(fd,bufptr) win32_fstat(fd,bufptr)
202 #define stat(pth,bufptr) win32_stat(pth,bufptr)
203 #define setmode(fd,mode) win32_setmode(fd,mode)
204 #define lseek(fd,offset,orig) win32_lseek(fd,offset,orig)
205 #define tell(fd) win32_tell(fd)
206 #define dup(fd) win32_dup(fd)
207 #define dup2(fd1,fd2) win32_dup2(fd1,fd2)
208 #define open win32_open
209 #define close(fd) win32_close(fd)
210 #define eof(fd) win32_eof(fd)
211 #define read(fd,b,s) win32_read(fd,b,s)
212 #define write(fd,b,s) win32_write(fd,b,s)
213 #define _open_osfhandle win32_open_osfhandle
214 #define _get_osfhandle win32_get_osfhandle
215 #define spawnvp win32_spawnvp
216 #define mkdir win32_mkdir
217 #define rmdir win32_rmdir
218 #define chdir win32_chdir
219 #define flock(fd,o) win32_flock(fd,o)
220 #define execvp win32_execvp
221 #define perror win32_perror
222 #define setbuf win32_setbuf
223 #define setvbuf win32_setvbuf
225 #define flushall win32_flushall
227 #define fcloseall win32_fcloseall
228 #define fgets win32_fgets
229 #define gets win32_gets
230 #define fgetc win32_fgetc
232 #define putc win32_putc
233 #define puts win32_puts
235 #define getchar win32_getchar
237 #define putchar win32_putchar
239 #if !defined(MYMALLOC) || !defined(PERL_CORE)
244 #define malloc win32_malloc
245 #define calloc win32_calloc
246 #define realloc win32_realloc
247 #define free win32_free
250 #define pipe(fd) win32_pipe((fd), 512, O_BINARY)
251 #define pause() win32_sleep((32767L << 16) + 32767)
252 #define sleep win32_sleep
253 #define times win32_times
254 #define alarm win32_alarm
255 #define ioctl win32_ioctl
256 #define utime win32_utime
257 #define wait win32_wait
259 #ifdef HAVE_DES_FCRYPT
261 #define crypt win32_crypt
264 #ifndef USE_WIN32_RTL_ENV
266 #define getenv win32_getenv
269 #endif /* WIN32IO_IS_STDIO */
270 #endif /* WIN32IOP_H */