Definition:
struct child_info {
#ifdef WIN32
/*
* These handles are used by ap_call_exec to call
* create process with pipe handles.
*/
HANDLE hPipeInputRead;
HANDLE hPipeOutputWrite;
HANDLE hPipeErrorWrite;
#else
/*
* We need to put a dummy member in here to avoid compilation
* errors under certain Unix compilers, like SGI's and HPUX's,
* which fail to compile a zero-sized struct. Of course
* it would be much nicer if there was actually a use for this
* structure under Unix. Aah the joys of x-platform code.
*/
int dummy;
#endif
};
Usage example:
No examples available.
No documentation available.
Previous: BUFF
Next: cmd_parms
Table of Contents
(Routines,
Structures,
Data Cells,
Constants)