From 54725af65d49b2ed8413041530c71b8d3bde0714 Mon Sep 17 00:00:00 2001 From: Gurusamy Sarathy Date: Tue, 16 Jul 2002 02:57:47 +0000 Subject: integrate a variant of change#17568 from maint-5.6 branch (the do_exec parts elided so that change is restricted strictly to windows; binary compatibility stubs not needed) p4raw-link: @17568 on //depot/maint-5.6/perl: 07691bcd6c6d7fd92f508fd5268e700370ea47c2 p4raw-id: //depot/perl@17570 --- proto.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'proto.h') diff --git a/proto.h b/proto.h index e201596cf1..666caa1de2 100644 --- a/proto.h +++ b/proto.h @@ -217,6 +217,11 @@ PERL_CALLCONV void Perl_do_chop(pTHX_ SV* asv, SV* sv); PERL_CALLCONV bool Perl_do_close(pTHX_ GV* gv, bool not_implicit); PERL_CALLCONV bool Perl_do_eof(pTHX_ GV* gv); PERL_CALLCONV bool Perl_do_exec(pTHX_ char* cmd); +#if defined(WIN32) +PERL_CALLCONV int Perl_do_aspawn(pTHX_ SV* really, SV** mark, SV** sp); +PERL_CALLCONV int Perl_do_spawn(pTHX_ char* cmd); +PERL_CALLCONV int Perl_do_spawn_nowait(pTHX_ char* cmd); +#endif #if !defined(WIN32) PERL_CALLCONV bool Perl_do_exec3(pTHX_ char* cmd, int fd, int flag); #endif -- cgit v1.2.1