--- parser3/src/include/pa_exec.h 2002/02/08 08:30:13 1.7 +++ parser3/src/include/pa_exec.h 2002/08/01 11:26:47 1.9 @@ -3,19 +3,21 @@ Copyright (c) 2000,2001, 2002 ArtLebedev Group (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) - - $Id: pa_exec.h,v 1.7 2002/02/08 08:30:13 paf Exp $ */ #ifndef PA_EXEC_H #define PA_EXEC_H +static const char* IDENT_EXEC_H="$Id: pa_exec.h,v 1.9 2002/08/01 11:26:47 paf Exp $"; + #include "pa_string.h" #include "pa_hash.h" #include "pa_array.h" /// @return exit code -int pa_exec(const String& file_spec, +int pa_exec( + bool forced_allow, ///< allow execution regardles of --disable-execs + const String& file_spec, const Hash *env, ///< 0 | Hash of String const Array *argv, ///< 0 | Array of command line arguments const String& in, String& out, String& err);