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