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