This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: unterminated C<...> at line 426 in file perlport.pod
[perl5.git] / iperlsys.h
1 /*
2  * iperlsys.h - Perl's interface to the system
3  *
4  * This file defines the system level functionality that perl needs.
5  *
6  * When using C, this definition is in the form of a set of macros
7  * that can be #defined to the system-level function (or a wrapper
8  * provided elsewhere).
9  *
10  * GSAR 21-JUN-98
11  */
12
13 #ifndef __Inc__IPerl___
14 #define __Inc__IPerl___
15
16 /*
17  *      PerlXXX_YYY explained - DickH and DougL @ ActiveState.com
18  *
19  * XXX := functional group
20  * YYY := stdlib/OS function name
21  *
22  * Continuing with the theme of PerlIO, all OS functionality was
23  * encapsulated into one of several interfaces.
24  *
25  * PerlIO - stdio
26  * PerlLIO - low level I/O
27  * PerlMem - malloc, realloc, free
28  * PerlDir - directory related
29  * PerlEnv - process environment handling
30  * PerlProc - process control
31  * PerlSock - socket functions
32  *
33  *
34  * The features of this are:
35  * 1. All OS dependant code is in the Perl Host and not the Perl Core.
36  *    (At least this is the holy grail goal of this work)
37  * 2. The Perl Host (see perl.h for description) can provide a new and
38  *    improved interface to OS functionality if required.
39  * 3. Developers can easily hook into the OS calls for instrumentation
40  *    or diagnostic purposes.
41  *
42  * What was changed to do this:
43  * 1. All calls to OS functions were replaced with PerlXXX_YYY
44  *
45  */
46
47 /*
48     Interface for perl stdio functions, or whatever we are Configure-d
49     to use.
50 */
51 #include "perlio.h"
52
53 #ifndef Sighandler_t
54 typedef Signal_t (*Sighandler_t) (int);
55 #endif
56
57 #if defined(PERL_IMPLICIT_SYS)
58
59 /* IPerlStdIO           */
60 struct IPerlStdIO;
61 struct IPerlStdIOInfo;
62 typedef FILE*           (*LPStdin)(struct IPerlStdIO*);
63 typedef FILE*           (*LPStdout)(struct IPerlStdIO*);
64 typedef FILE*           (*LPStderr)(struct IPerlStdIO*);
65 typedef FILE*           (*LPOpen)(struct IPerlStdIO*, const char*,
66                             const char*);
67 typedef int             (*LPClose)(struct IPerlStdIO*, FILE*);
68 typedef int             (*LPEof)(struct IPerlStdIO*, FILE*);
69 typedef int             (*LPError)(struct IPerlStdIO*, FILE*);
70 typedef void            (*LPClearerr)(struct IPerlStdIO*, FILE*);
71 typedef int             (*LPGetc)(struct IPerlStdIO*, FILE*);
72 typedef char*           (*LPGetBase)(struct IPerlStdIO*, FILE*);
73 typedef int             (*LPGetBufsiz)(struct IPerlStdIO*, FILE*);
74 typedef int             (*LPGetCnt)(struct IPerlStdIO*, FILE*);
75 typedef char*           (*LPGetPtr)(struct IPerlStdIO*, FILE*);
76 typedef char*           (*LPGets)(struct IPerlStdIO*, FILE*, char*, int);
77 typedef int             (*LPPutc)(struct IPerlStdIO*, FILE*, int);
78 typedef int             (*LPPuts)(struct IPerlStdIO*, FILE*, const char*);
79 typedef int             (*LPFlush)(struct IPerlStdIO*, FILE*);
80 typedef int             (*LPUngetc)(struct IPerlStdIO*, int,FILE*);
81 typedef int             (*LPFileno)(struct IPerlStdIO*, FILE*);
82 typedef FILE*           (*LPFdopen)(struct IPerlStdIO*, int, const char*);
83 typedef FILE*           (*LPReopen)(struct IPerlStdIO*, const char*,
84                             const char*, FILE*);
85 typedef SSize_t         (*LPRead)(struct IPerlStdIO*, void*, Size_t, Size_t, FILE *);
86 typedef SSize_t         (*LPWrite)(struct IPerlStdIO*, const void*, Size_t, Size_t, FILE *);
87 typedef void            (*LPSetBuf)(struct IPerlStdIO*, FILE*, char*);
88 typedef int             (*LPSetVBuf)(struct IPerlStdIO*, FILE*, char*, int,
89                             Size_t);
90 typedef void            (*LPSetCnt)(struct IPerlStdIO*, FILE*, int);
91 typedef void            (*LPSetPtr)(struct IPerlStdIO*, FILE*, char*);
92 typedef void            (*LPSetlinebuf)(struct IPerlStdIO*, FILE*);
93 typedef int             (*LPPrintf)(struct IPerlStdIO*, FILE*, const char*,
94                             ...);
95 typedef int             (*LPVprintf)(struct IPerlStdIO*, FILE*, const char*,
96                             va_list);
97 typedef long            (*LPTell)(struct IPerlStdIO*, FILE*);
98 typedef int             (*LPSeek)(struct IPerlStdIO*, FILE*, Off_t, int);
99 typedef void            (*LPRewind)(struct IPerlStdIO*, FILE*);
100 typedef FILE*           (*LPTmpfile)(struct IPerlStdIO*);
101 typedef int             (*LPGetpos)(struct IPerlStdIO*, FILE*, Fpos_t*);
102 typedef int             (*LPSetpos)(struct IPerlStdIO*, FILE*,
103                             const Fpos_t*);
104 typedef void            (*LPInit)(struct IPerlStdIO*);
105 typedef void            (*LPInitOSExtras)(struct IPerlStdIO*);
106 typedef FILE*           (*LPFdupopen)(struct IPerlStdIO*, FILE*);
107
108 struct IPerlStdIO
109 {
110     LPStdin             pStdin;
111     LPStdout            pStdout;
112     LPStderr            pStderr;
113     LPOpen              pOpen;
114     LPClose             pClose;
115     LPEof               pEof;
116     LPError             pError;
117     LPClearerr          pClearerr;
118     LPGetc              pGetc;
119     LPGetBase           pGetBase;
120     LPGetBufsiz         pGetBufsiz;
121     LPGetCnt            pGetCnt;
122     LPGetPtr            pGetPtr;
123     LPGets              pGets;
124     LPPutc              pPutc;
125     LPPuts              pPuts;
126     LPFlush             pFlush;
127     LPUngetc            pUngetc;
128     LPFileno            pFileno;
129     LPFdopen            pFdopen;
130     LPReopen            pReopen;
131     LPRead              pRead;
132     LPWrite             pWrite;
133     LPSetBuf            pSetBuf;
134     LPSetVBuf           pSetVBuf;
135     LPSetCnt            pSetCnt;
136     LPSetPtr            pSetPtr;
137     LPSetlinebuf        pSetlinebuf;
138     LPPrintf            pPrintf;
139     LPVprintf           pVprintf;
140     LPTell              pTell;
141     LPSeek              pSeek;
142     LPRewind            pRewind;
143     LPTmpfile           pTmpfile;
144     LPGetpos            pGetpos;
145     LPSetpos            pSetpos;
146     LPInit              pInit;
147     LPInitOSExtras      pInitOSExtras;
148     LPFdupopen          pFdupopen;
149 };
150
151 struct IPerlStdIOInfo
152 {
153     unsigned long       nCount;     /* number of entries expected */
154     struct IPerlStdIO   perlStdIOList;
155 };
156
157 /* These do not belong here ... NI-S, 14 Nov 2000 */
158
159 #ifdef USE_STDIO_PTR
160 #  define PerlSIO_has_cntptr(f)         1
161 #  ifdef STDIO_PTR_LVALUE
162 #    ifdef  STDIO_CNT_LVALUE
163 #      define PerlSIO_canset_cnt(f)     1
164 #      ifdef STDIO_PTR_LVAL_NOCHANGE_CNT
165 #        define PerlSIO_fast_gets(f)    1
166 #      endif
167 #    else /* STDIO_CNT_LVALUE */
168 #      define PerlSIO_canset_cnt(f)     0
169 #    endif
170 #  else /* STDIO_PTR_LVALUE */
171 #    ifdef STDIO_PTR_LVAL_SETS_CNT
172 #      define PerlSIO_fast_gets(f)      1
173 #    endif
174 #  endif
175 #else  /* USE_STDIO_PTR */
176 #  define PerlSIO_has_cntptr(f)         0
177 #  define PerlSIO_canset_cnt(f)         0
178 #endif /* USE_STDIO_PTR */
179
180 #ifndef PerlSIO_fast_gets
181 #define PerlSIO_fast_gets(f)            0
182 #endif
183
184 #ifdef FILE_base
185 #define PerlSIO_has_base(f)             1
186 #else
187 #define PerlSIO_has_base(f)             0
188 #endif
189
190 /* Now take FILE * via function table */
191
192 #define PerlSIO_stdin                                                   \
193         (*PL_StdIO->pStdin)(PL_StdIO)
194 #define PerlSIO_stdout                                                  \
195         (*PL_StdIO->pStdout)(PL_StdIO)
196 #define PerlSIO_stderr                                                  \
197         (*PL_StdIO->pStderr)(PL_StdIO)
198 #define PerlSIO_fopen(x,y)                                              \
199         (*PL_StdIO->pOpen)(PL_StdIO, (x),(y))
200 #define PerlSIO_fclose(f)                                               \
201         (*PL_StdIO->pClose)(PL_StdIO, (f))
202 #define PerlSIO_feof(f)                                                 \
203         (*PL_StdIO->pEof)(PL_StdIO, (f))
204 #define PerlSIO_ferror(f)                                               \
205         (*PL_StdIO->pError)(PL_StdIO, (f))
206 #define PerlSIO_clearerr(f)                                             \
207         (*PL_StdIO->pClearerr)(PL_StdIO, (f))
208 #define PerlSIO_fgetc(f)                                                \
209         (*PL_StdIO->pGetc)(PL_StdIO, (f))
210 #define PerlSIO_get_base(f)                                             \
211         (*PL_StdIO->pGetBase)(PL_StdIO, (f))
212 #define PerlSIO_get_bufsiz(f)                                           \
213         (*PL_StdIO->pGetBufsiz)(PL_StdIO, (f))
214 #define PerlSIO_get_cnt(f)                                              \
215         (*PL_StdIO->pGetCnt)(PL_StdIO, (f))
216 #define PerlSIO_get_ptr(f)                                              \
217         (*PL_StdIO->pGetPtr)(PL_StdIO, (f))
218 #define PerlSIO_fputc(f,c)                                              \
219         (*PL_StdIO->pPutc)(PL_StdIO, (f),(c))
220 #define PerlSIO_fputs(f,s)                                              \
221         (*PL_StdIO->pPuts)(PL_StdIO, (f),(s))
222 #define PerlSIO_fflush(f)                                               \
223         (*PL_StdIO->pFlush)(PL_StdIO, (f))
224 #define PerlSIO_fgets(s, n, fp)                                         \
225         (*PL_StdIO->pGets)(PL_StdIO, (fp), s, n)
226 #define PerlSIO_ungetc(c,f)                                             \
227         (*PL_StdIO->pUngetc)(PL_StdIO, (c),(f))
228 #define PerlSIO_fileno(f)                                               \
229         (*PL_StdIO->pFileno)(PL_StdIO, (f))
230 #define PerlSIO_fdopen(f, s)                                            \
231         (*PL_StdIO->pFdopen)(PL_StdIO, (f),(s))
232 #define PerlSIO_freopen(p, m, f)                                        \
233         (*PL_StdIO->pReopen)(PL_StdIO, (p), (m), (f))
234 #define PerlSIO_fread(buf,sz,count,f)                                   \
235         (*PL_StdIO->pRead)(PL_StdIO, (buf), (sz), (count), (f))
236 #define PerlSIO_fwrite(buf,sz,count,f)                                  \
237         (*PL_StdIO->pWrite)(PL_StdIO, (buf), (sz), (count), (f))
238 #define PerlSIO_setbuf(f,b)                                             \
239         (*PL_StdIO->pSetBuf)(PL_StdIO, (f), (b))
240 #define PerlSIO_setvbuf(f,b,t,s)                                        \
241         (*PL_StdIO->pSetVBuf)(PL_StdIO, (f),(b),(t),(s))
242 #define PerlSIO_set_cnt(f,c)                                            \
243         (*PL_StdIO->pSetCnt)(PL_StdIO, (f), (c))
244 #define PerlSIO_set_ptr(f,p)                                            \
245         (*PL_StdIO->pSetPtr)(PL_StdIO, (f), (p))
246 #define PerlSIO_setlinebuf(f)                                           \
247         (*PL_StdIO->pSetlinebuf)(PL_StdIO, (f))
248 #define PerlSIO_printf          Perl_fprintf_nocontext
249 #define PerlSIO_stdoutf         Perl_printf_nocontext
250 #define PerlSIO_vprintf(f,fmt,a)                                                \
251         (*PL_StdIO->pVprintf)(PL_StdIO, (f),(fmt),a)
252 #define PerlSIO_ftell(f)                                                        \
253         (*PL_StdIO->pTell)(PL_StdIO, (f))
254 #define PerlSIO_fseek(f,o,w)                                            \
255         (*PL_StdIO->pSeek)(PL_StdIO, (f),(o),(w))
256 #define PerlSIO_fgetpos(f,p)                                            \
257         (*PL_StdIO->pGetpos)(PL_StdIO, (f),(p))
258 #define PerlSIO_fsetpos(f,p)                                            \
259         (*PL_StdIO->pSetpos)(PL_StdIO, (f),(p))
260 #define PerlSIO_rewind(f)                                               \
261         (*PL_StdIO->pRewind)(PL_StdIO, (f))
262 #define PerlSIO_tmpfile()                                               \
263         (*PL_StdIO->pTmpfile)(PL_StdIO)
264 #define PerlSIO_init()                                                  \
265         (*PL_StdIO->pInit)(PL_StdIO)
266 #undef  init_os_extras
267 #define init_os_extras()                                                \
268         (*PL_StdIO->pInitOSExtras)(PL_StdIO)
269 #define PerlSIO_fdupopen(f)                                             \
270         (*PL_StdIO->pFdupopen)(PL_StdIO, (f))
271
272 #else   /* PERL_IMPLICIT_SYS */
273
274 #define PerlSIO_stdin                   stdin
275 #define PerlSIO_stdout                  stdout
276 #define PerlSIO_stderr                  stderr
277 #define PerlSIO_fopen(x,y)              fopen(x,y)
278 #define PerlSIO_fclose(f)               fclose(f)
279 #define PerlSIO_feof(f)                 feof(f)
280 #define PerlSIO_ferror(f)               ferror(f)
281 #define PerlSIO_clearerr(f)             clearerr(f)
282 #define PerlSIO_fgetc(f)                        fgetc(f)
283 #ifdef FILE_base
284 #define PerlSIO_get_base(f)             FILE_base(f)
285 #define PerlSIO_get_bufsiz(f)           FILE_bufsiz(f)
286 #else
287 #define PerlSIO_get_base(f)             NULL
288 #define PerlSIO_get_bufsiz(f)           0
289 #endif
290 #ifdef USE_STDIO_PTR
291 #define PerlSIO_get_cnt(f)              FILE_cnt(f)
292 #define PerlSIO_get_ptr(f)              FILE_ptr(f)
293 #else
294 #define PerlSIO_get_cnt(f)              0
295 #define PerlSIO_get_ptr(f)              NULL
296 #endif
297 #define PerlSIO_fputc(f,c)              fputc(c,f)
298 #define PerlSIO_fputs(f,s)              fputs(s,f)
299 #define PerlSIO_fflush(f)               Fflush(f)
300 #define PerlSIO_fgets(s, n, fp)         fgets(s,n,fp)
301 #if defined(VMS) && defined(__DECC)
302      /* Unusual definition of ungetc() here to accomodate fast_sv_gets()'
303       * belief that it can mix getc/ungetc with reads from stdio buffer */
304      int decc$ungetc(int __c, FILE *__stream);
305 #    define PerlSIO_ungetc(c,f) ((c) == EOF ? EOF : \
306             ((*(f) && !((*(f))->_flag & _IONBF) && \
307             ((*(f))->_ptr > (*(f))->_base)) ? \
308             ((*(f))->_cnt++, *(--(*(f))->_ptr) = (c)) : decc$ungetc(c,f)))
309 #else
310 #  define PerlSIO_ungetc(c,f)          ungetc(c,f)
311 #endif
312 #define PerlSIO_fileno(f)               fileno(f)
313 #define PerlSIO_fdopen(f, s)            fdopen(f,s)
314 #define PerlSIO_freopen(p, m, f)        freopen(p,m,f)
315 #define PerlSIO_fread(buf,sz,count,f)   fread(buf,sz,count,f)
316 #define PerlSIO_fwrite(buf,sz,count,f)  fwrite(buf,sz,count,f)
317 #define PerlSIO_setbuf(f,b)             setbuf(f,b)
318 #define PerlSIO_setvbuf(f,b,t,s)        setvbuf(f,b,t,s)
319 #if defined(USE_STDIO_PTR) && defined(STDIO_CNT_LVALUE)
320 #define PerlSIO_set_cnt(f,c)            FILE_cnt(f) = (c)
321 #else
322 #define PerlSIO_set_cnt(f,c)            PerlIOProc_abort()
323 #endif
324 #if defined(USE_STDIO_PTR) && defined(STDIO_PTR_LVALUE)
325 #define PerlSIO_set_ptr(f,p)            FILE_ptr(f) = (p)
326 #else
327 #define PerlSIO_set_ptr(f,p)            PerlIOProc_abort()
328 #endif
329 #define PerlSIO_setlinebuf(f)           setlinebuf(f)
330 #define PerlSIO_printf                  Perl_fprintf_nocontext
331 #define PerlSIO_stdoutf                 *PL_StdIO->pPrintf
332 #define PerlSIO_vprintf(f,fmt,a)        
333 #define PerlSIO_ftell(f)                ftell(f)
334 #define PerlSIO_fseek(f,o,w)            fseek(f,o,w)
335 #define PerlSIO_fgetpos(f,p)            fgetpos(f,p)
336 #define PerlSIO_fsetpos(f,p)            fsetpos(f,p)
337 #define PerlSIO_rewind(f)               rewind(f)
338 #define PerlSIO_tmpfile()               tmpfile()
339 #define PerlSIO_fdupopen(f)             (f)
340
341 #endif  /* PERL_IMPLICIT_SYS */
342
343 /*
344  *   Interface for directory functions
345  */
346
347 #if defined(PERL_IMPLICIT_SYS)
348
349 /* IPerlDir             */
350 struct IPerlDir;
351 struct IPerlDirInfo;
352 typedef int             (*LPMakedir)(struct IPerlDir*, const char*, int);
353 typedef int             (*LPChdir)(struct IPerlDir*, const char*);
354 typedef int             (*LPRmdir)(struct IPerlDir*, const char*);
355 typedef int             (*LPDirClose)(struct IPerlDir*, DIR*);
356 typedef DIR*            (*LPDirOpen)(struct IPerlDir*, char*);
357 typedef struct direct*  (*LPDirRead)(struct IPerlDir*, DIR*);
358 typedef void            (*LPDirRewind)(struct IPerlDir*, DIR*);
359 typedef void            (*LPDirSeek)(struct IPerlDir*, DIR*, long);
360 typedef long            (*LPDirTell)(struct IPerlDir*, DIR*);
361 #ifdef WIN32
362 typedef char*           (*LPDirMapPathA)(struct IPerlDir*, const char*);
363 typedef WCHAR*          (*LPDirMapPathW)(struct IPerlDir*, const WCHAR*);
364 #endif
365
366 struct IPerlDir
367 {
368     LPMakedir           pMakedir;
369     LPChdir             pChdir;
370     LPRmdir             pRmdir;
371     LPDirClose          pClose;
372     LPDirOpen           pOpen;
373     LPDirRead           pRead;
374     LPDirRewind         pRewind;
375     LPDirSeek           pSeek;
376     LPDirTell           pTell;
377 #ifdef WIN32
378     LPDirMapPathA       pMapPathA;
379     LPDirMapPathW       pMapPathW;
380 #endif
381 };
382
383 struct IPerlDirInfo
384 {
385     unsigned long       nCount;     /* number of entries expected */
386     struct IPerlDir     perlDirList;
387 };
388
389 #define PerlDir_mkdir(name, mode)                               \
390         (*PL_Dir->pMakedir)(PL_Dir, (name), (mode))
391 #define PerlDir_chdir(name)                                     \
392         (*PL_Dir->pChdir)(PL_Dir, (name))
393 #define PerlDir_rmdir(name)                                     \
394         (*PL_Dir->pRmdir)(PL_Dir, (name))
395 #define PerlDir_close(dir)                                      \
396         (*PL_Dir->pClose)(PL_Dir, (dir))
397 #define PerlDir_open(name)                                      \
398         (*PL_Dir->pOpen)(PL_Dir, (name))
399 #define PerlDir_read(dir)                                       \
400         (*PL_Dir->pRead)(PL_Dir, (dir))
401 #define PerlDir_rewind(dir)                                     \
402         (*PL_Dir->pRewind)(PL_Dir, (dir))
403 #define PerlDir_seek(dir, loc)                                  \
404         (*PL_Dir->pSeek)(PL_Dir, (dir), (loc))
405 #define PerlDir_tell(dir)                                       \
406         (*PL_Dir->pTell)(PL_Dir, (dir))
407 #ifdef WIN32
408 #define PerlDir_mapA(dir)                                       \
409         (*PL_Dir->pMapPathA)(PL_Dir, (dir))
410 #define PerlDir_mapW(dir)                                       \
411         (*PL_Dir->pMapPathW)(PL_Dir, (dir))
412 #endif
413
414 #else   /* PERL_IMPLICIT_SYS */
415
416 #define PerlDir_mkdir(name, mode)       Mkdir((name), (mode))
417 #ifdef VMS
418 #  define PerlDir_chdir(n)              Chdir(((n) && *(n)) ? (n) : "SYS$LOGIN")
419 #else
420 #  define PerlDir_chdir(name)           chdir((name))
421 #endif
422 #define PerlDir_rmdir(name)             rmdir((name))
423 #define PerlDir_close(dir)              closedir((dir))
424 #define PerlDir_open(name)              opendir((name))
425 #define PerlDir_read(dir)               readdir((dir))
426 #define PerlDir_rewind(dir)             rewinddir((dir))
427 #define PerlDir_seek(dir, loc)          seekdir((dir), (loc))
428 #define PerlDir_tell(dir)               telldir((dir))
429 #ifdef WIN32
430 #define PerlDir_mapA(dir)               dir
431 #define PerlDir_mapW(dir)               dir
432 #endif
433
434 #endif  /* PERL_IMPLICIT_SYS */
435
436 /*
437     Interface for perl environment functions
438 */
439
440 #if defined(PERL_IMPLICIT_SYS)
441
442 /* IPerlEnv             */
443 struct IPerlEnv;
444 struct IPerlEnvInfo;
445 typedef char*           (*LPEnvGetenv)(struct IPerlEnv*, const char*);
446 typedef int             (*LPEnvPutenv)(struct IPerlEnv*, const char*);
447 typedef char*           (*LPEnvGetenv_len)(struct IPerlEnv*,
448                                     const char *varname, unsigned long *len);
449 typedef int             (*LPEnvUname)(struct IPerlEnv*, struct utsname *name);
450 typedef void            (*LPEnvClearenv)(struct IPerlEnv*);
451 typedef void*           (*LPEnvGetChildenv)(struct IPerlEnv*);
452 typedef void            (*LPEnvFreeChildenv)(struct IPerlEnv*, void* env);
453 typedef char*           (*LPEnvGetChilddir)(struct IPerlEnv*);
454 typedef void            (*LPEnvFreeChilddir)(struct IPerlEnv*, char* dir);
455 #ifdef HAS_ENVGETENV
456 typedef char*           (*LPENVGetenv)(struct IPerlEnv*, const char *varname);
457 typedef char*           (*LPENVGetenv_len)(struct IPerlEnv*,
458                                     const char *varname, unsigned long *len);
459 #endif
460 #ifdef WIN32
461 typedef unsigned long   (*LPEnvOsID)(struct IPerlEnv*);
462 typedef char*           (*LPEnvLibPath)(struct IPerlEnv*, const char*);
463 typedef char*           (*LPEnvSiteLibPath)(struct IPerlEnv*, const char*);
464 typedef char*           (*LPEnvVendorLibPath)(struct IPerlEnv*, const char*);
465 typedef void            (*LPEnvGetChildIO)(struct IPerlEnv*, child_IO_table*);
466 #endif
467
468 struct IPerlEnv
469 {
470     LPEnvGetenv         pGetenv;
471     LPEnvPutenv         pPutenv;
472     LPEnvGetenv_len     pGetenv_len;
473     LPEnvUname          pEnvUname;
474     LPEnvClearenv       pClearenv;
475     LPEnvGetChildenv    pGetChildenv;
476     LPEnvFreeChildenv   pFreeChildenv;
477     LPEnvGetChilddir    pGetChilddir;
478     LPEnvFreeChilddir   pFreeChilddir;
479 #ifdef HAS_ENVGETENV
480     LPENVGetenv         pENVGetenv;
481     LPENVGetenv_len     pENVGetenv_len;
482 #endif
483 #ifdef WIN32
484     LPEnvOsID           pEnvOsID;
485     LPEnvLibPath        pLibPath;
486     LPEnvSiteLibPath    pSiteLibPath;
487     LPEnvVendorLibPath  pVendorLibPath;
488     LPEnvGetChildIO     pGetChildIO;
489 #endif
490 };
491
492 struct IPerlEnvInfo
493 {
494     unsigned long       nCount;     /* number of entries expected */
495     struct IPerlEnv     perlEnvList;
496 };
497
498 #define PerlEnv_putenv(str)                                     \
499         (*PL_Env->pPutenv)(PL_Env,(str))
500 #define PerlEnv_getenv(str)                                     \
501         (*PL_Env->pGetenv)(PL_Env,(str))
502 #define PerlEnv_getenv_len(str,l)                               \
503         (*PL_Env->pGetenv_len)(PL_Env,(str), (l))
504 #define PerlEnv_clearenv()                                      \
505         (*PL_Env->pClearenv)(PL_Env)
506 #define PerlEnv_get_childenv()                                  \
507         (*PL_Env->pGetChildenv)(PL_Env)
508 #define PerlEnv_free_childenv(e)                                \
509         (*PL_Env->pFreeChildenv)(PL_Env, (e))
510 #define PerlEnv_get_childdir()                                  \
511         (*PL_Env->pGetChilddir)(PL_Env)
512 #define PerlEnv_free_childdir(d)                                \
513         (*PL_Env->pFreeChilddir)(PL_Env, (d))
514 #ifdef HAS_ENVGETENV
515 #  define PerlEnv_ENVgetenv(str)                                \
516         (*PL_Env->pENVGetenv)(PL_Env,(str))
517 #  define PerlEnv_ENVgetenv_len(str,l)                          \
518         (*PL_Env->pENVGetenv_len)(PL_Env,(str), (l))
519 #else
520 #  define PerlEnv_ENVgetenv(str)                                \
521         PerlEnv_getenv((str))
522 #  define PerlEnv_ENVgetenv_len(str,l)                          \
523         PerlEnv_getenv_len((str),(l))
524 #endif
525 #define PerlEnv_uname(name)                                     \
526         (*PL_Env->pEnvUname)(PL_Env,(name))
527 #ifdef WIN32
528 #define PerlEnv_os_id()                                         \
529         (*PL_Env->pEnvOsID)(PL_Env)
530 #define PerlEnv_lib_path(str)                                   \
531         (*PL_Env->pLibPath)(PL_Env,(str))
532 #define PerlEnv_sitelib_path(str)                               \
533         (*PL_Env->pSiteLibPath)(PL_Env,(str))
534 #define PerlEnv_vendorlib_path(str)                             \
535         (*PL_Env->pVendorLibPath)(PL_Env,(str))
536 #define PerlEnv_get_child_IO(ptr)                               \
537         (*PL_Env->pGetChildIO)(PL_Env, ptr)
538 #endif
539
540 #else   /* PERL_IMPLICIT_SYS */
541
542 #define PerlEnv_putenv(str)             putenv((str))
543 #define PerlEnv_getenv(str)             getenv((str))
544 #define PerlEnv_getenv_len(str,l)       getenv_len((str), (l))
545 #define PerlEnv_clearenv()              clearenv()
546 #define PerlEnv_get_childenv()          get_childenv()
547 #define PerlEnv_free_childenv(e)        free_childenv((e))
548 #define PerlEnv_get_childdir()          get_childdir()
549 #define PerlEnv_free_childdir(d)        free_childdir((d))
550 #ifdef HAS_ENVGETENV
551 #  define PerlEnv_ENVgetenv(str)        ENVgetenv((str))
552 #  define PerlEnv_ENVgetenv_len(str,l)  ENVgetenv_len((str), (l))
553 #else
554 #  define PerlEnv_ENVgetenv(str)        PerlEnv_getenv((str))
555 #  define PerlEnv_ENVgetenv_len(str,l)  PerlEnv_getenv_len((str), (l))
556 #endif
557 #define PerlEnv_uname(name)             uname((name))
558
559 #ifdef WIN32
560 #define PerlEnv_os_id()                 win32_os_id()
561 #define PerlEnv_lib_path(str)           win32_get_privlib(str)
562 #define PerlEnv_sitelib_path(str)       win32_get_sitelib(str)
563 #define PerlEnv_vendorlib_path(str)     win32_get_vendorlib(str)
564 #define PerlEnv_get_child_IO(ptr)       win32_get_child_IO(ptr)
565 #endif
566
567 #endif  /* PERL_IMPLICIT_SYS */
568
569 /*
570     Interface for perl low-level IO functions
571 */
572
573 #if defined(PERL_IMPLICIT_SYS)
574
575 /* IPerlLIO             */
576 struct IPerlLIO;
577 struct IPerlLIOInfo;
578 typedef int             (*LPLIOAccess)(struct IPerlLIO*, const char*, int);
579 typedef int             (*LPLIOChmod)(struct IPerlLIO*, const char*, int);
580 typedef int             (*LPLIOChown)(struct IPerlLIO*, const char*, uid_t,
581                             gid_t);
582 typedef int             (*LPLIOChsize)(struct IPerlLIO*, int, long);
583 typedef int             (*LPLIOClose)(struct IPerlLIO*, int);
584 typedef int             (*LPLIODup)(struct IPerlLIO*, int);
585 typedef int             (*LPLIODup2)(struct IPerlLIO*, int, int);
586 typedef int             (*LPLIOFlock)(struct IPerlLIO*, int, int);
587 typedef int             (*LPLIOFileStat)(struct IPerlLIO*, int, struct stat*);
588 typedef int             (*LPLIOIOCtl)(struct IPerlLIO*, int, unsigned int,
589                             char*);
590 typedef int             (*LPLIOIsatty)(struct IPerlLIO*, int);
591 typedef int             (*LPLIOLink)(struct IPerlLIO*, const char*,
592                                      const char *);
593 typedef long            (*LPLIOLseek)(struct IPerlLIO*, int, long, int);
594 typedef int             (*LPLIOLstat)(struct IPerlLIO*, const char*,
595                             struct stat*);
596 typedef char*           (*LPLIOMktemp)(struct IPerlLIO*, char*);
597 typedef int             (*LPLIOOpen)(struct IPerlLIO*, const char*, int);       
598 typedef int             (*LPLIOOpen3)(struct IPerlLIO*, const char*, int, int); 
599 typedef int             (*LPLIORead)(struct IPerlLIO*, int, void*, unsigned int);
600 typedef int             (*LPLIORename)(struct IPerlLIO*, const char*,
601                             const char*);
602 #ifdef NETWARE
603 typedef int             (*LPLIOSetmode)(struct IPerlLIO*, FILE*, int);
604 #else
605 typedef int             (*LPLIOSetmode)(struct IPerlLIO*, int, int);
606 #endif  /* NETWARE */
607 typedef int             (*LPLIONameStat)(struct IPerlLIO*, const char*,
608                             struct stat*);
609 typedef char*           (*LPLIOTmpnam)(struct IPerlLIO*, char*);
610 typedef int             (*LPLIOUmask)(struct IPerlLIO*, int);
611 typedef int             (*LPLIOUnlink)(struct IPerlLIO*, const char*);
612 typedef int             (*LPLIOUtime)(struct IPerlLIO*, char*, struct utimbuf*);
613 typedef int             (*LPLIOWrite)(struct IPerlLIO*, int, const void*,
614                             unsigned int);
615
616 struct IPerlLIO
617 {
618     LPLIOAccess         pAccess;
619     LPLIOChmod          pChmod;
620     LPLIOChown          pChown;
621     LPLIOChsize         pChsize;
622     LPLIOClose          pClose;
623     LPLIODup            pDup;
624     LPLIODup2           pDup2;
625     LPLIOFlock          pFlock;
626     LPLIOFileStat       pFileStat;
627     LPLIOIOCtl          pIOCtl;
628     LPLIOIsatty         pIsatty;
629     LPLIOLink           pLink;
630     LPLIOLseek          pLseek;
631     LPLIOLstat          pLstat;
632     LPLIOMktemp         pMktemp;
633     LPLIOOpen           pOpen;
634     LPLIOOpen3          pOpen3;
635     LPLIORead           pRead;
636     LPLIORename         pRename;
637     LPLIOSetmode        pSetmode;
638     LPLIONameStat       pNameStat;
639     LPLIOTmpnam         pTmpnam;
640     LPLIOUmask          pUmask;
641     LPLIOUnlink         pUnlink;
642     LPLIOUtime          pUtime;
643     LPLIOWrite          pWrite;
644 };
645
646 struct IPerlLIOInfo
647 {
648     unsigned long       nCount;     /* number of entries expected */
649     struct IPerlLIO     perlLIOList;
650 };
651
652 #define PerlLIO_access(file, mode)                                      \
653         (*PL_LIO->pAccess)(PL_LIO, (file), (mode))
654 #define PerlLIO_chmod(file, mode)                                       \
655         (*PL_LIO->pChmod)(PL_LIO, (file), (mode))
656 #define PerlLIO_chown(file, owner, group)                               \
657         (*PL_LIO->pChown)(PL_LIO, (file), (owner), (group))
658 #define PerlLIO_chsize(fd, size)                                        \
659         (*PL_LIO->pChsize)(PL_LIO, (fd), (size))
660 #define PerlLIO_close(fd)                                               \
661         (*PL_LIO->pClose)(PL_LIO, (fd))
662 #define PerlLIO_dup(fd)                                                 \
663         (*PL_LIO->pDup)(PL_LIO, (fd))
664 #define PerlLIO_dup2(fd1, fd2)                                          \
665         (*PL_LIO->pDup2)(PL_LIO, (fd1), (fd2))
666 #define PerlLIO_flock(fd, op)                                           \
667         (*PL_LIO->pFlock)(PL_LIO, (fd), (op))
668 #define PerlLIO_fstat(fd, buf)                                          \
669         (*PL_LIO->pFileStat)(PL_LIO, (fd), (buf))
670 #define PerlLIO_ioctl(fd, u, buf)                                       \
671         (*PL_LIO->pIOCtl)(PL_LIO, (fd), (u), (buf))
672 #define PerlLIO_isatty(fd)                                              \
673         (*PL_LIO->pIsatty)(PL_LIO, (fd))
674 #define PerlLIO_link(oldname, newname)                                  \
675         (*PL_LIO->pLink)(PL_LIO, (oldname), (newname))
676 #define PerlLIO_lseek(fd, offset, mode)                                 \
677         (*PL_LIO->pLseek)(PL_LIO, (fd), (offset), (mode))
678 #define PerlLIO_lstat(name, buf)                                        \
679         (*PL_LIO->pLstat)(PL_LIO, (name), (buf))
680 #define PerlLIO_mktemp(file)                                            \
681         (*PL_LIO->pMktemp)(PL_LIO, (file))
682 #define PerlLIO_open(file, flag)                                        \
683         (*PL_LIO->pOpen)(PL_LIO, (file), (flag))
684 #define PerlLIO_open3(file, flag, perm)                                 \
685         (*PL_LIO->pOpen3)(PL_LIO, (file), (flag), (perm))
686 #define PerlLIO_read(fd, buf, count)                                    \
687         (*PL_LIO->pRead)(PL_LIO, (fd), (buf), (count))
688 #define PerlLIO_rename(oname, newname)                                  \
689         (*PL_LIO->pRename)(PL_LIO, (oname), (newname))
690 #define PerlLIO_setmode(fd, mode)                                       \
691         (*PL_LIO->pSetmode)(PL_LIO, (fd), (mode))
692 #define PerlLIO_stat(name, buf)                                         \
693         (*PL_LIO->pNameStat)(PL_LIO, (name), (buf))
694 #define PerlLIO_tmpnam(str)                                             \
695         (*PL_LIO->pTmpnam)(PL_LIO, (str))
696 #define PerlLIO_umask(mode)                                             \
697         (*PL_LIO->pUmask)(PL_LIO, (mode))
698 #define PerlLIO_unlink(file)                                            \
699         (*PL_LIO->pUnlink)(PL_LIO, (file))
700 #define PerlLIO_utime(file, time)                                       \
701         (*PL_LIO->pUtime)(PL_LIO, (file), (time))
702 #define PerlLIO_write(fd, buf, count)                                   \
703         (*PL_LIO->pWrite)(PL_LIO, (fd), (buf), (count))
704
705 #else   /* PERL_IMPLICIT_SYS */
706
707 #define PerlLIO_access(file, mode)      access((file), (mode))
708 #define PerlLIO_chmod(file, mode)       chmod((file), (mode))
709 #define PerlLIO_chown(file, owner, grp) chown((file), (owner), (grp))
710 #define PerlLIO_chsize(fd, size)        chsize((fd), (size))
711 #define PerlLIO_close(fd)               close((fd))
712 #define PerlLIO_dup(fd)                 dup((fd))
713 #define PerlLIO_dup2(fd1, fd2)          dup2((fd1), (fd2))
714 #define PerlLIO_flock(fd, op)           FLOCK((fd), (op))
715 #define PerlLIO_fstat(fd, buf)          Fstat((fd), (buf))
716 #define PerlLIO_ioctl(fd, u, buf)       ioctl((fd), (u), (buf))
717 #define PerlLIO_isatty(fd)              isatty((fd))
718 #define PerlLIO_link(oldname, newname)  link((oldname), (newname))
719 #define PerlLIO_lseek(fd, offset, mode) lseek((fd), (offset), (mode))
720 #define PerlLIO_stat(name, buf)         Stat((name), (buf))
721 #ifdef HAS_LSTAT
722 #  define PerlLIO_lstat(name, buf)      lstat((name), (buf))
723 #else
724 #  define PerlLIO_lstat(name, buf)      PerlLIO_stat((name), (buf))
725 #endif
726 #define PerlLIO_mktemp(file)            mktemp((file))
727 #define PerlLIO_mkstemp(file)           mkstemp((file))
728 #define PerlLIO_open(file, flag)        open((file), (flag))
729 #define PerlLIO_open3(file, flag, perm) open((file), (flag), (perm))
730 #define PerlLIO_read(fd, buf, count)    read((fd), (buf), (count))
731 #define PerlLIO_rename(old, new)        rename((old), (new))
732 #define PerlLIO_setmode(fd, mode)       setmode((fd), (mode))
733 #define PerlLIO_tmpnam(str)             tmpnam((str))
734 #define PerlLIO_umask(mode)             umask((mode))
735 #define PerlLIO_unlink(file)            unlink((file))
736 #define PerlLIO_utime(file, time)       utime((file), (time))
737 #define PerlLIO_write(fd, buf, count)   write((fd), (buf), (count))
738
739 #endif  /* PERL_IMPLICIT_SYS */
740
741 /*
742     Interface for perl memory allocation
743 */
744
745 #if defined(PERL_IMPLICIT_SYS)
746
747 /* IPerlMem             */
748 struct IPerlMem;
749 struct IPerlMemInfo;
750 typedef void*           (*LPMemMalloc)(struct IPerlMem*, size_t);
751 typedef void*           (*LPMemRealloc)(struct IPerlMem*, void*, size_t);
752 typedef void            (*LPMemFree)(struct IPerlMem*, void*);
753 typedef void*           (*LPMemCalloc)(struct IPerlMem*, size_t, size_t);
754 typedef void            (*LPMemGetLock)(struct IPerlMem*);
755 typedef void            (*LPMemFreeLock)(struct IPerlMem*);
756 typedef int             (*LPMemIsLocked)(struct IPerlMem*);
757
758 struct IPerlMem
759 {
760     LPMemMalloc         pMalloc;
761     LPMemRealloc        pRealloc;
762     LPMemFree           pFree;
763     LPMemCalloc         pCalloc;
764     LPMemGetLock        pGetLock;
765     LPMemFreeLock       pFreeLock;
766     LPMemIsLocked       pIsLocked;
767 };
768
769 struct IPerlMemInfo
770 {
771     unsigned long       nCount;     /* number of entries expected */
772     struct IPerlMem     perlMemList;
773 };
774
775 /* Interpreter specific memory macros */
776 #define PerlMem_malloc(size)                                \
777         (*PL_Mem->pMalloc)(PL_Mem, (size))
778 #define PerlMem_realloc(buf, size)                          \
779         (*PL_Mem->pRealloc)(PL_Mem, (buf), (size))
780 #define PerlMem_free(buf)                                   \
781         (*PL_Mem->pFree)(PL_Mem, (buf))
782 #define PerlMem_calloc(num, size)                           \
783         (*PL_Mem->pCalloc)(PL_Mem, (num), (size))
784 #define PerlMem_get_lock()                                  \
785         (*PL_Mem->pGetLock)(PL_Mem)
786 #define PerlMem_free_lock()                                 \
787         (*PL_Mem->pFreeLock)(PL_Mem)
788 #define PerlMem_is_locked()                                 \
789         (*PL_Mem->pIsLocked)(PL_Mem)
790
791 /* Shared memory macros */
792 #define PerlMemShared_malloc(size)                          \
793         (*PL_MemShared->pMalloc)(PL_MemShared, (size))
794 #define PerlMemShared_realloc(buf, size)                    \
795         (*PL_MemShared->pRealloc)(PL_MemShared, (buf), (size))
796 #define PerlMemShared_free(buf)                             \
797         (*PL_MemShared->pFree)(PL_MemShared, (buf))
798 #define PerlMemShared_calloc(num, size)                     \
799         (*PL_MemShared->pCalloc)(PL_MemShared, (num), (size))
800 #define PerlMemShared_get_lock()                            \
801         (*PL_MemShared->pGetLock)(PL_MemShared)
802 #define PerlMemShared_free_lock()                           \
803         (*PL_MemShared->pFreeLock)(PL_MemShared)
804 #define PerlMemShared_is_locked()                           \
805         (*PL_MemShared->pIsLocked)(PL_MemShared)
806
807
808 /* Parse tree memory macros */
809 #define PerlMemParse_malloc(size)                           \
810         (*PL_MemParse->pMalloc)(PL_MemParse, (size))
811 #define PerlMemParse_realloc(buf, size)                     \
812         (*PL_MemParse->pRealloc)(PL_MemParse, (buf), (size))
813 #define PerlMemParse_free(buf)                              \
814         (*PL_MemParse->pFree)(PL_MemParse, (buf))
815 #define PerlMemParse_calloc(num, size)                      \
816         (*PL_MemParse->pCalloc)(PL_MemParse, (num), (size))
817 #define PerlMemParse_get_lock()                             \
818         (*PL_MemParse->pGetLock)(PL_MemParse)
819 #define PerlMemParse_free_lock()                            \
820         (*PL_MemParse->pFreeLock)(PL_MemParse)
821 #define PerlMemParse_is_locked()                            \
822         (*PL_MemParse->pIsLocked)(PL_MemParse)
823
824
825 #else   /* PERL_IMPLICIT_SYS */
826
827 /* Interpreter specific memory macros */
828 #define PerlMem_malloc(size)            malloc((size))
829 #define PerlMem_realloc(buf, size)      realloc((buf), (size))
830 #define PerlMem_free(buf)               free((buf))
831 #define PerlMem_calloc(num, size)       calloc((num), (size))
832 #define PerlMem_get_lock()              
833 #define PerlMem_free_lock()
834 #define PerlMem_is_locked()             0
835
836 /* Shared memory macros */
837 #define PerlMemShared_malloc(size)              malloc((size))
838 #define PerlMemShared_realloc(buf, size)        realloc((buf), (size))
839 #define PerlMemShared_free(buf)                 free((buf))
840 #define PerlMemShared_calloc(num, size)         calloc((num), (size))
841 #define PerlMemShared_get_lock()                
842 #define PerlMemShared_free_lock()
843 #define PerlMemShared_is_locked()               0
844
845 /* Parse tree memory macros */
846 #define PerlMemParse_malloc(size)       malloc((size))
847 #define PerlMemParse_realloc(buf, size) realloc((buf), (size))
848 #define PerlMemParse_free(buf)          free((buf))
849 #define PerlMemParse_calloc(num, size)  calloc((num), (size))
850 #define PerlMemParse_get_lock()         
851 #define PerlMemParse_free_lock()
852 #define PerlMemParse_is_locked()        0
853
854 #endif  /* PERL_IMPLICIT_SYS */
855
856 /*
857     Interface for perl process functions
858 */
859
860
861 #if defined(PERL_IMPLICIT_SYS)
862
863 #ifndef jmp_buf
864 #include <setjmp.h>
865 #endif
866
867 /* IPerlProc            */
868 struct IPerlProc;
869 struct IPerlProcInfo;
870 typedef void            (*LPProcAbort)(struct IPerlProc*);
871 typedef char*           (*LPProcCrypt)(struct IPerlProc*, const char*,
872                             const char*);
873 typedef void            (*LPProcExit)(struct IPerlProc*, int);
874 typedef void            (*LPProc_Exit)(struct IPerlProc*, int);
875 typedef int             (*LPProcExecl)(struct IPerlProc*, const char*,
876                             const char*, const char*, const char*,
877                             const char*);
878 typedef int             (*LPProcExecv)(struct IPerlProc*, const char*,
879                             const char*const*);
880 typedef int             (*LPProcExecvp)(struct IPerlProc*, const char*,
881                             const char*const*);
882 typedef uid_t           (*LPProcGetuid)(struct IPerlProc*);
883 typedef uid_t           (*LPProcGeteuid)(struct IPerlProc*);
884 typedef gid_t           (*LPProcGetgid)(struct IPerlProc*);
885 typedef gid_t           (*LPProcGetegid)(struct IPerlProc*);
886 typedef char*           (*LPProcGetlogin)(struct IPerlProc*);
887 typedef int             (*LPProcKill)(struct IPerlProc*, int, int);
888 typedef int             (*LPProcKillpg)(struct IPerlProc*, int, int);
889 typedef int             (*LPProcPauseProc)(struct IPerlProc*);
890 typedef PerlIO*         (*LPProcPopen)(struct IPerlProc*, const char*,
891                             const char*);
892 typedef PerlIO*         (*LPProcPopenList)(struct IPerlProc*, const char*,
893                             IV narg, SV **args);
894 typedef int             (*LPProcPclose)(struct IPerlProc*, PerlIO*);
895 typedef int             (*LPProcPipe)(struct IPerlProc*, int*);
896 typedef int             (*LPProcSetuid)(struct IPerlProc*, uid_t);
897 typedef int             (*LPProcSetgid)(struct IPerlProc*, gid_t);
898 typedef int             (*LPProcSleep)(struct IPerlProc*, unsigned int);
899 typedef int             (*LPProcTimes)(struct IPerlProc*, struct tms*);
900 typedef int             (*LPProcWait)(struct IPerlProc*, int*);
901 typedef int             (*LPProcWaitpid)(struct IPerlProc*, int, int*, int);
902 typedef Sighandler_t    (*LPProcSignal)(struct IPerlProc*, int, Sighandler_t);
903 typedef int             (*LPProcFork)(struct IPerlProc*);
904 typedef int             (*LPProcGetpid)(struct IPerlProc*);
905 #ifdef WIN32
906 typedef void*           (*LPProcDynaLoader)(struct IPerlProc*, const char*);
907 typedef void            (*LPProcGetOSError)(struct IPerlProc*,
908                             SV* sv, DWORD dwErr);
909 typedef void            (*LPProcFreeBuf)(struct IPerlProc*, char*);
910 typedef BOOL            (*LPProcDoCmd)(struct IPerlProc*, char*);
911 typedef int             (*LPProcSpawn)(struct IPerlProc*, char*);
912 typedef int             (*LPProcSpawnvp)(struct IPerlProc*, int, const char*,
913                             const char*const*);
914 typedef int             (*LPProcASpawn)(struct IPerlProc*, void*, void**, void**);
915 #endif
916 typedef int             (*LPProcLastHost)(struct IPerlProc*);
917
918 struct IPerlProc
919 {
920     LPProcAbort         pAbort;
921     LPProcCrypt         pCrypt;
922     LPProcExit          pExit;
923     LPProc_Exit         p_Exit;
924     LPProcExecl         pExecl;
925     LPProcExecv         pExecv;
926     LPProcExecvp        pExecvp;
927     LPProcGetuid        pGetuid;
928     LPProcGeteuid       pGeteuid;
929     LPProcGetgid        pGetgid;
930     LPProcGetegid       pGetegid;
931     LPProcGetlogin      pGetlogin;
932     LPProcKill          pKill;
933     LPProcKillpg        pKillpg;
934     LPProcPauseProc     pPauseProc;
935     LPProcPopen         pPopen;
936     LPProcPclose        pPclose;
937     LPProcPipe          pPipe;
938     LPProcSetuid        pSetuid;
939     LPProcSetgid        pSetgid;
940     LPProcSleep         pSleep;
941     LPProcTimes         pTimes;
942     LPProcWait          pWait;
943     LPProcWaitpid       pWaitpid;
944     LPProcSignal        pSignal;
945     LPProcFork          pFork;
946     LPProcGetpid        pGetpid;
947 #ifdef WIN32
948     LPProcDynaLoader    pDynaLoader;
949     LPProcGetOSError    pGetOSError;
950     LPProcDoCmd         pDoCmd;
951     LPProcSpawn         pSpawn;
952     LPProcSpawnvp       pSpawnvp;
953     LPProcASpawn        pASpawn;
954 #endif
955     LPProcLastHost      pLastHost;
956     LPProcPopenList     pPopenList;
957 };
958
959 struct IPerlProcInfo
960 {
961     unsigned long       nCount;     /* number of entries expected */
962     struct IPerlProc    perlProcList;
963 };
964
965 #define PerlProc_abort()                                                \
966         (*PL_Proc->pAbort)(PL_Proc)
967 #define PerlProc_crypt(c,s)                                             \
968         (*PL_Proc->pCrypt)(PL_Proc, (c), (s))
969 #define PerlProc_exit(s)                                                \
970         (*PL_Proc->pExit)(PL_Proc, (s))
971 #define PerlProc__exit(s)                                               \
972         (*PL_Proc->p_Exit)(PL_Proc, (s))
973 #define PerlProc_execl(c, w, x, y, z)                                   \
974         (*PL_Proc->pExecl)(PL_Proc, (c), (w), (x), (y), (z))
975 #define PerlProc_execv(c, a)                                            \
976         (*PL_Proc->pExecv)(PL_Proc, (c), (a))
977 #define PerlProc_execvp(c, a)                                           \
978         (*PL_Proc->pExecvp)(PL_Proc, (c), (a))
979 #define PerlProc_getuid()                                               \
980         (*PL_Proc->pGetuid)(PL_Proc)
981 #define PerlProc_geteuid()                                              \
982         (*PL_Proc->pGeteuid)(PL_Proc)
983 #define PerlProc_getgid()                                               \
984         (*PL_Proc->pGetgid)(PL_Proc)
985 #define PerlProc_getegid()                                              \
986         (*PL_Proc->pGetegid)(PL_Proc)
987 #define PerlProc_getlogin()                                             \
988         (*PL_Proc->pGetlogin)(PL_Proc)
989 #define PerlProc_kill(i, a)                                             \
990         (*PL_Proc->pKill)(PL_Proc, (i), (a))
991 #define PerlProc_killpg(i, a)                                           \
992         (*PL_Proc->pKillpg)(PL_Proc, (i), (a))
993 #define PerlProc_pause()                                                \
994         (*PL_Proc->pPauseProc)(PL_Proc)
995 #define PerlProc_popen(c, m)                                            \
996         (*PL_Proc->pPopen)(PL_Proc, (c), (m))
997 #define PerlProc_popen_list(m, n, a)                                    \
998         (*PL_Proc->pPopenList)(PL_Proc, (m), (n), (a))
999 #define PerlProc_pclose(f)                                              \
1000         (*PL_Proc->pPclose)(PL_Proc, (f))
1001 #define PerlProc_pipe(fd)                                               \
1002         (*PL_Proc->pPipe)(PL_Proc, (fd))
1003 #define PerlProc_setuid(u)                                              \
1004         (*PL_Proc->pSetuid)(PL_Proc, (u))
1005 #define PerlProc_setgid(g)                                              \
1006         (*PL_Proc->pSetgid)(PL_Proc, (g))
1007 #define PerlProc_sleep(t)                                               \
1008         (*PL_Proc->pSleep)(PL_Proc, (t))
1009 #define PerlProc_times(t)                                               \
1010         (*PL_Proc->pTimes)(PL_Proc, (t))
1011 #define PerlProc_wait(t)                                                \
1012         (*PL_Proc->pWait)(PL_Proc, (t))
1013 #define PerlProc_waitpid(p,s,f)                                         \
1014         (*PL_Proc->pWaitpid)(PL_Proc, (p), (s), (f))
1015 #define PerlProc_signal(n, h)                                           \
1016         (*PL_Proc->pSignal)(PL_Proc, (n), (h))
1017 #define PerlProc_fork()                                                 \
1018         (*PL_Proc->pFork)(PL_Proc)
1019 #define PerlProc_getpid()                                               \
1020         (*PL_Proc->pGetpid)(PL_Proc)
1021 #define PerlProc_setjmp(b, n) Sigsetjmp((b), (n))
1022 #define PerlProc_longjmp(b, n) Siglongjmp((b), (n))
1023
1024 #ifdef WIN32
1025 #define PerlProc_DynaLoad(f)                                            \
1026         (*PL_Proc->pDynaLoader)(PL_Proc, (f))
1027 #define PerlProc_GetOSError(s,e)                                        \
1028         (*PL_Proc->pGetOSError)(PL_Proc, (s), (e))
1029 #define PerlProc_Cmd(s)                                                 \
1030         (*PL_Proc->pDoCmd)(PL_Proc, (s))
1031 #define do_spawn(s)                                                     \
1032         (*PL_Proc->pSpawn)(PL_Proc, (s))
1033 #define do_spawnvp(m, c, a)                                             \
1034         (*PL_Proc->pSpawnvp)(PL_Proc, (m), (c), (a))
1035 #define PerlProc_aspawn(m,c,a)                                          \
1036         (*PL_Proc->pASpawn)(PL_Proc, (m), (c), (a))
1037 #endif
1038 #define PerlProc_lasthost()                                             \
1039         (*PL_Proc->pLastHost)(PL_Proc)
1040
1041 #else   /* PERL_IMPLICIT_SYS */
1042
1043 #define PerlProc_abort()        abort()
1044 #define PerlProc_crypt(c,s)     crypt((c), (s))
1045 #define PerlProc_exit(s)        exit((s))
1046 #define PerlProc__exit(s)       _exit((s))
1047 #define PerlProc_execl(c,w,x,y,z)                                       \
1048         execl((c), (w), (x), (y), (z))
1049 #define PerlProc_execv(c, a)    execv((c), (a))
1050 #define PerlProc_execvp(c, a)   execvp((c), (a))
1051 #define PerlProc_getuid()       getuid()
1052 #define PerlProc_geteuid()      geteuid()
1053 #define PerlProc_getgid()       getgid()
1054 #define PerlProc_getegid()      getegid()
1055 #define PerlProc_getlogin()     getlogin()
1056 #define PerlProc_kill(i, a)     kill((i), (a))
1057 #define PerlProc_killpg(i, a)   killpg((i), (a))
1058 #define PerlProc_pause()        Pause()
1059 #define PerlProc_popen(c, m)    my_popen((c), (m))
1060 #define PerlProc_popen_list(m,n,a)      my_popen_list((m),(n),(a))
1061 #define PerlProc_pclose(f)      my_pclose((f))
1062 #define PerlProc_pipe(fd)       pipe((fd))
1063 #define PerlProc_setuid(u)      setuid((u))
1064 #define PerlProc_setgid(g)      setgid((g))
1065 #define PerlProc_sleep(t)       sleep((t))
1066 #define PerlProc_times(t)       times((t))
1067 #define PerlProc_wait(t)        wait((t))
1068 #define PerlProc_waitpid(p,s,f) waitpid((p), (s), (f))
1069 #define PerlProc_setjmp(b, n)   Sigsetjmp((b), (n))
1070 #define PerlProc_longjmp(b, n)  Siglongjmp((b), (n))
1071 #define PerlProc_signal(n, h)   signal((n), (h))
1072 #define PerlProc_fork()         my_fork()
1073 #define PerlProc_getpid()       getpid()
1074
1075 #ifdef WIN32
1076 #define PerlProc_DynaLoad(f)                                            \
1077         win32_dynaload((f))
1078 #define PerlProc_GetOSError(s,e)                                        \
1079         win32_str_os_error((s), (e))
1080 #endif
1081 #endif  /* PERL_IMPLICIT_SYS */
1082
1083 /*
1084     Interface for perl socket functions
1085 */
1086
1087 #if defined(PERL_IMPLICIT_SYS)
1088
1089 /* PerlSock             */
1090 struct IPerlSock;
1091 struct IPerlSockInfo;
1092 typedef u_long          (*LPHtonl)(struct IPerlSock*, u_long);
1093 typedef u_short         (*LPHtons)(struct IPerlSock*, u_short);
1094 typedef u_long          (*LPNtohl)(struct IPerlSock*, u_long);
1095 typedef u_short         (*LPNtohs)(struct IPerlSock*, u_short);
1096 typedef SOCKET          (*LPAccept)(struct IPerlSock*, SOCKET,
1097                             struct sockaddr*, int*);
1098 typedef int             (*LPBind)(struct IPerlSock*, SOCKET,
1099                             const struct sockaddr*, int);
1100 typedef int             (*LPConnect)(struct IPerlSock*, SOCKET,
1101                             const struct sockaddr*, int);
1102 typedef void            (*LPEndhostent)(struct IPerlSock*);
1103 typedef void            (*LPEndnetent)(struct IPerlSock*);
1104 typedef void            (*LPEndprotoent)(struct IPerlSock*);
1105 typedef void            (*LPEndservent)(struct IPerlSock*);
1106 typedef int             (*LPGethostname)(struct IPerlSock*, char*, int);
1107 typedef int             (*LPGetpeername)(struct IPerlSock*, SOCKET,
1108                             struct sockaddr*, int*);
1109 typedef struct hostent* (*LPGethostbyaddr)(struct IPerlSock*, const char*,
1110                             int, int);
1111 typedef struct hostent* (*LPGethostbyname)(struct IPerlSock*, const char*);
1112 typedef struct hostent* (*LPGethostent)(struct IPerlSock*);
1113 typedef struct netent*  (*LPGetnetbyaddr)(struct IPerlSock*, long, int);
1114 typedef struct netent*  (*LPGetnetbyname)(struct IPerlSock*, const char*);
1115 typedef struct netent*  (*LPGetnetent)(struct IPerlSock*);
1116 typedef struct protoent*(*LPGetprotobyname)(struct IPerlSock*, const char*);
1117 typedef struct protoent*(*LPGetprotobynumber)(struct IPerlSock*, int);
1118 typedef struct protoent*(*LPGetprotoent)(struct IPerlSock*);
1119 typedef struct servent* (*LPGetservbyname)(struct IPerlSock*, const char*,
1120                             const char*);
1121 typedef struct servent* (*LPGetservbyport)(struct IPerlSock*, int,
1122                             const char*);
1123 typedef struct servent* (*LPGetservent)(struct IPerlSock*);
1124 typedef int             (*LPGetsockname)(struct IPerlSock*, SOCKET,
1125                             struct sockaddr*, int*);
1126 typedef int             (*LPGetsockopt)(struct IPerlSock*, SOCKET, int, int,
1127                             char*, int*);
1128 typedef unsigned long   (*LPInetAddr)(struct IPerlSock*, const char*);
1129 typedef char*           (*LPInetNtoa)(struct IPerlSock*, struct in_addr);
1130 typedef int             (*LPListen)(struct IPerlSock*, SOCKET, int);
1131 typedef int             (*LPRecv)(struct IPerlSock*, SOCKET, char*, int, int);
1132 typedef int             (*LPRecvfrom)(struct IPerlSock*, SOCKET, char*, int,
1133                             int, struct sockaddr*, int*);
1134 typedef int             (*LPSelect)(struct IPerlSock*, int, char*, char*,
1135                             char*, const struct timeval*);
1136 typedef int             (*LPSend)(struct IPerlSock*, SOCKET, const char*, int,
1137                             int);
1138 typedef int             (*LPSendto)(struct IPerlSock*, SOCKET, const char*,
1139                             int, int, const struct sockaddr*, int);
1140 typedef void            (*LPSethostent)(struct IPerlSock*, int);
1141 typedef void            (*LPSetnetent)(struct IPerlSock*, int);
1142 typedef void            (*LPSetprotoent)(struct IPerlSock*, int);
1143 typedef void            (*LPSetservent)(struct IPerlSock*, int);
1144 typedef int             (*LPSetsockopt)(struct IPerlSock*, SOCKET, int, int,
1145                             const char*, int);
1146 typedef int             (*LPShutdown)(struct IPerlSock*, SOCKET, int);
1147 typedef SOCKET          (*LPSocket)(struct IPerlSock*, int, int, int);
1148 typedef int             (*LPSocketpair)(struct IPerlSock*, int, int, int,
1149                             int*);
1150 #ifdef WIN32
1151 typedef int             (*LPClosesocket)(struct IPerlSock*, SOCKET s);
1152 #endif
1153
1154 struct IPerlSock
1155 {
1156     LPHtonl             pHtonl;
1157     LPHtons             pHtons;
1158     LPNtohl             pNtohl;
1159     LPNtohs             pNtohs;
1160     LPAccept            pAccept;
1161     LPBind              pBind;
1162     LPConnect           pConnect;
1163     LPEndhostent        pEndhostent;
1164     LPEndnetent         pEndnetent;
1165     LPEndprotoent       pEndprotoent;
1166     LPEndservent        pEndservent;
1167     LPGethostname       pGethostname;
1168     LPGetpeername       pGetpeername;
1169     LPGethostbyaddr     pGethostbyaddr;
1170     LPGethostbyname     pGethostbyname;
1171     LPGethostent        pGethostent;
1172     LPGetnetbyaddr      pGetnetbyaddr;
1173     LPGetnetbyname      pGetnetbyname;
1174     LPGetnetent         pGetnetent;
1175     LPGetprotobyname    pGetprotobyname;
1176     LPGetprotobynumber  pGetprotobynumber;
1177     LPGetprotoent       pGetprotoent;
1178     LPGetservbyname     pGetservbyname;
1179     LPGetservbyport     pGetservbyport;
1180     LPGetservent        pGetservent;
1181     LPGetsockname       pGetsockname;
1182     LPGetsockopt        pGetsockopt;
1183     LPInetAddr          pInetAddr;
1184     LPInetNtoa          pInetNtoa;
1185     LPListen            pListen;
1186     LPRecv              pRecv;
1187     LPRecvfrom          pRecvfrom;
1188     LPSelect            pSelect;
1189     LPSend              pSend;
1190     LPSendto            pSendto;
1191     LPSethostent        pSethostent;
1192     LPSetnetent         pSetnetent;
1193     LPSetprotoent       pSetprotoent;
1194     LPSetservent        pSetservent;
1195     LPSetsockopt        pSetsockopt;
1196     LPShutdown          pShutdown;
1197     LPSocket            pSocket;
1198     LPSocketpair        pSocketpair;
1199 #ifdef WIN32
1200     LPClosesocket       pClosesocket;
1201 #endif
1202 };
1203
1204 struct IPerlSockInfo
1205 {
1206     unsigned long       nCount;     /* number of entries expected */
1207     struct IPerlSock    perlSockList;
1208 };
1209
1210 #define PerlSock_htonl(x)                                               \
1211         (*PL_Sock->pHtonl)(PL_Sock, x)
1212 #define PerlSock_htons(x)                                               \
1213         (*PL_Sock->pHtons)(PL_Sock, x)
1214 #define PerlSock_ntohl(x)                                               \
1215         (*PL_Sock->pNtohl)(PL_Sock, x)
1216 #define PerlSock_ntohs(x)                                               \
1217         (*PL_Sock->pNtohs)(PL_Sock, x)
1218 #define PerlSock_accept(s, a, l)                                        \
1219         (*PL_Sock->pAccept)(PL_Sock, s, a, l)
1220 #define PerlSock_bind(s, n, l)                                          \
1221         (*PL_Sock->pBind)(PL_Sock, s, n, l)
1222 #define PerlSock_connect(s, n, l)                                       \
1223         (*PL_Sock->pConnect)(PL_Sock, s, n, l)
1224 #define PerlSock_endhostent()                                           \
1225         (*PL_Sock->pEndhostent)(PL_Sock)
1226 #define PerlSock_endnetent()                                            \
1227         (*PL_Sock->pEndnetent)(PL_Sock)
1228 #define PerlSock_endprotoent()                                          \
1229         (*PL_Sock->pEndprotoent)(PL_Sock)
1230 #define PerlSock_endservent()                                           \
1231         (*PL_Sock->pEndservent)(PL_Sock)
1232 #define PerlSock_gethostbyaddr(a, l, t)                                 \
1233         (*PL_Sock->pGethostbyaddr)(PL_Sock, a, l, t)
1234 #define PerlSock_gethostbyname(n)                                       \
1235         (*PL_Sock->pGethostbyname)(PL_Sock, n)
1236 #define PerlSock_gethostent()                                           \
1237         (*PL_Sock->pGethostent)(PL_Sock)
1238 #define PerlSock_gethostname(n, l)                                      \
1239         (*PL_Sock->pGethostname)(PL_Sock, n, l)
1240 #define PerlSock_getnetbyaddr(n, t)                                     \
1241         (*PL_Sock->pGetnetbyaddr)(PL_Sock, n, t)
1242 #define PerlSock_getnetbyname(c)                                        \
1243         (*PL_Sock->pGetnetbyname)(PL_Sock, c)
1244 #define PerlSock_getnetent()                                            \
1245         (*PL_Sock->pGetnetent)(PL_Sock)
1246 #define PerlSock_getpeername(s, n, l)                                   \
1247         (*PL_Sock->pGetpeername)(PL_Sock, s, n, l)
1248 #define PerlSock_getprotobyname(n)                                      \
1249         (*PL_Sock->pGetprotobyname)(PL_Sock, n)
1250 #define PerlSock_getprotobynumber(n)                                    \
1251         (*PL_Sock->pGetprotobynumber)(PL_Sock, n)
1252 #define PerlSock_getprotoent()                                          \
1253         (*PL_Sock->pGetprotoent)(PL_Sock)
1254 #define PerlSock_getservbyname(n, p)                                    \
1255         (*PL_Sock->pGetservbyname)(PL_Sock, n, p)
1256 #define PerlSock_getservbyport(port, p)                                 \
1257         (*PL_Sock->pGetservbyport)(PL_Sock, port, p)
1258 #define PerlSock_getservent()                                           \
1259         (*PL_Sock->pGetservent)(PL_Sock)
1260 #define PerlSock_getsockname(s, n, l)                                   \
1261         (*PL_Sock->pGetsockname)(PL_Sock, s, n, l)
1262 #define PerlSock_getsockopt(s,l,n,v,i)                                  \
1263         (*PL_Sock->pGetsockopt)(PL_Sock, s, l, n, v, i)
1264 #define PerlSock_inet_addr(c)                                           \
1265         (*PL_Sock->pInetAddr)(PL_Sock, c)
1266 #define PerlSock_inet_ntoa(i)                                           \
1267         (*PL_Sock->pInetNtoa)(PL_Sock, i)
1268 #define PerlSock_listen(s, b)                                           \
1269         (*PL_Sock->pListen)(PL_Sock, s, b)
1270 #define PerlSock_recv(s, b, l, f)                                       \
1271         (*PL_Sock->pRecv)(PL_Sock, s, b, l, f)
1272 #define PerlSock_recvfrom(s,b,l,f,from,fromlen)                         \
1273         (*PL_Sock->pRecvfrom)(PL_Sock, s, b, l, f, from, fromlen)
1274 #define PerlSock_select(n, r, w, e, t)                                  \
1275         (*PL_Sock->pSelect)(PL_Sock, n, (char*)r, (char*)w, (char*)e, t)
1276 #define PerlSock_send(s, b, l, f)                                       \
1277         (*PL_Sock->pSend)(PL_Sock, s, b, l, f)
1278 #define PerlSock_sendto(s, b, l, f, t, tlen)                            \
1279         (*PL_Sock->pSendto)(PL_Sock, s, b, l, f, t, tlen)
1280 #define PerlSock_sethostent(f)                                          \
1281         (*PL_Sock->pSethostent)(PL_Sock, f)
1282 #define PerlSock_setnetent(f)                                           \
1283         (*PL_Sock->pSetnetent)(PL_Sock, f)
1284 #define PerlSock_setprotoent(f)                                         \
1285         (*PL_Sock->pSetprotoent)(PL_Sock, f)
1286 #define PerlSock_setservent(f)                                          \
1287         (*PL_Sock->pSetservent)(PL_Sock, f)
1288 #define PerlSock_setsockopt(s, l, n, v, len)                            \
1289         (*PL_Sock->pSetsockopt)(PL_Sock, s, l, n, v, len)
1290 #define PerlSock_shutdown(s, h)                                         \
1291         (*PL_Sock->pShutdown)(PL_Sock, s, h)
1292 #define PerlSock_socket(a, t, p)                                        \
1293         (*PL_Sock->pSocket)(PL_Sock, a, t, p)
1294 #define PerlSock_socketpair(a, t, p, f)                                 \
1295         (*PL_Sock->pSocketpair)(PL_Sock, a, t, p, f)
1296
1297 #ifdef WIN32
1298 #define PerlSock_closesocket(s)                                         \
1299         (*PL_Sock->pClosesocket)(PL_Sock, s)
1300 #endif
1301
1302 #else   /* PERL_IMPLICIT_SYS */
1303
1304 #define PerlSock_htonl(x)               htonl(x)
1305 #define PerlSock_htons(x)               htons(x)
1306 #define PerlSock_ntohl(x)               ntohl(x)
1307 #define PerlSock_ntohs(x)               ntohs(x)
1308 #define PerlSock_accept(s, a, l)        accept(s, a, l)
1309 #define PerlSock_bind(s, n, l)          bind(s, n, l)
1310 #define PerlSock_connect(s, n, l)       connect(s, n, l)
1311
1312 #define PerlSock_gethostbyaddr(a, l, t) gethostbyaddr(a, l, t)
1313 #define PerlSock_gethostbyname(n)       gethostbyname(n)
1314 #define PerlSock_gethostent             gethostent
1315 #define PerlSock_endhostent             endhostent
1316 #define PerlSock_gethostname(n, l)      gethostname(n, l)
1317
1318 #define PerlSock_getnetbyaddr(n, t)     getnetbyaddr(n, t)
1319 #define PerlSock_getnetbyname(n)        getnetbyname(n)
1320 #define PerlSock_getnetent              getnetent
1321 #define PerlSock_endnetent              endnetent
1322 #define PerlSock_getpeername(s, n, l)   getpeername(s, n, l)
1323
1324 #define PerlSock_getprotobyname(n)      getprotobyname(n)
1325 #define PerlSock_getprotobynumber(n)    getprotobynumber(n)
1326 #define PerlSock_getprotoent            getprotoent
1327 #define PerlSock_endprotoent            endprotoent
1328
1329 #define PerlSock_getservbyname(n, p)    getservbyname(n, p)
1330 #define PerlSock_getservbyport(port, p) getservbyport(port, p)
1331 #define PerlSock_getservent             getservent
1332 #define PerlSock_endservent             endservent
1333
1334 #define PerlSock_getsockname(s, n, l)   getsockname(s, n, l)
1335 #define PerlSock_getsockopt(s,l,n,v,i)  getsockopt(s, l, n, v, i)
1336 #define PerlSock_inet_addr(c)           inet_addr(c)
1337 #define PerlSock_inet_ntoa(i)           inet_ntoa(i)
1338 #define PerlSock_listen(s, b)           listen(s, b)
1339 #define PerlSock_recv(s, b, l, f)       recv(s, b, l, f)
1340 #define PerlSock_recvfrom(s, b, l, f, from, fromlen)                    \
1341         recvfrom(s, b, l, f, from, fromlen)
1342 #define PerlSock_select(n, r, w, e, t)  select(n, r, w, e, t)
1343 #define PerlSock_send(s, b, l, f)       send(s, b, l, f)
1344 #define PerlSock_sendto(s, b, l, f, t, tlen)                            \
1345         sendto(s, b, l, f, t, tlen)
1346 #define PerlSock_sethostent(f)          sethostent(f)
1347 #define PerlSock_setnetent(f)           setnetent(f)
1348 #define PerlSock_setprotoent(f)         setprotoent(f)
1349 #define PerlSock_setservent(f)          setservent(f)
1350 #define PerlSock_setsockopt(s, l, n, v, len)                            \
1351         setsockopt(s, l, n, v, len)
1352 #define PerlSock_shutdown(s, h)         shutdown(s, h)
1353 #define PerlSock_socket(a, t, p)        socket(a, t, p)
1354 #define PerlSock_socketpair(a, t, p, f) socketpair(a, t, p, f)
1355
1356 #ifdef WIN32
1357 #define PerlSock_closesocket(s)         closesocket(s)
1358 #endif
1359
1360 #endif  /* PERL_IMPLICIT_SYS */
1361
1362 #endif  /* __Inc__IPerl___ */
1363