/* Copyright (C) 1997, 1998, 1999 Aladdin Enterprises. All rights reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of the license contained in the file LICENSE in this distribution. For more information about licensing, please refer to http://www.ghostscript.com/licensing/. For information on commercial licensing, go to http://www.artifex.com/licensing/ or contact Artifex Software, Inc., 101 Lucas Valley Road #110, San Rafael, CA 94903, U.S.A., +1(415)492-9861. */ /* $Id: pipe_.h,v 1.6 2002/09/05 08:34:00 ghostgum Exp $ */ /* Declaration of popen and pclose */ #ifndef pipe__INCLUDED # define pipe__INCLUDED #include "stdio_.h" #ifdef __WIN32__ /* * MS Windows has popen and pclose in stdio.h, but under different names. * Unfortunately MSVC5 and 6 have a broken implementation of _popen, * so we use own. Our implementation only supports mode "wb". */ extern FILE *mswin_popen(const char *cmd, const char *mode); # define popen(cmd, mode) mswin_popen(cmd, mode) /* # define popen(cmd, mode) _popen(cmd, mode) */ # define pclose(file) _pclose(file) #else /* !__WIN32__ */ /* * popen isn't POSIX-standard, so we declare it here. * Because of inconsistent (and sometimes incorrect) header files, * we must omit the argument list. Unfortunately, this sometimes causes * more trouble than it cures. */ extern FILE *popen( /* const char *, const char * */ ); extern int pclose(FILE *); #endif /* !__WIN32__ */ #endif /* pipe__INCLUDED */