diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-03-24 14:31:49 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-03-24 14:31:49 +0000 |
commit | 8c0134a884f927d58f584b87281e5a27133cbf8f (patch) | |
tree | c8ab595e27dc62b04dc3888d299f0cab124d2f04 /win32/win32iop.h | |
parent | 5dd1177c222be3aa5f44de160a952953bc5703a5 (diff) | |
download | perl-8c0134a884f927d58f584b87281e5a27133cbf8f.tar.gz |
PerlIO fixups for Win32:
- provide win33_popenlist() - non-functional as yet.
- avoid need for aTHX in PerlIO_debug calls - even if not
enabled args are still evaluated so Win32 has trouble during fork().
- Add PerlIO/Scalar to list of extensions in win32/makefile.mk
- Fixup makedef.pl for latest set of symbols.
p4raw-id: //depot/perlio@9321
Diffstat (limited to 'win32/win32iop.h')
-rw-r--r-- | win32/win32iop.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/win32iop.h b/win32/win32iop.h index 5412f5e9a3..4d78839888 100644 --- a/win32/win32iop.h +++ b/win32/win32iop.h @@ -73,6 +73,7 @@ DllExport int win32_fstat(int fd,struct stat *sbufptr); DllExport int win32_stat(const char *name,struct stat *sbufptr); DllExport int win32_pipe( int *phandles, unsigned int psize, int textmode ); DllExport PerlIO* win32_popen( const char *command, const char *mode ); +DllExport PerlIO* win32_popenlist(const char *mode, IV narg, SV **args); DllExport int win32_pclose( PerlIO *pf); DllExport int win32_rename( const char *oname, const char *newname); DllExport int win32_setmode( int fd, int mode); |