Annotation of parser3/src/include/pa_exec.h, revision 1.1
1.1 ! paf 1: /** @file
! 2: Parser: program executing for different OS-es decls.
! 3:
! 4: Copyright (c) 2000,2001 ArtLebedev Group (http://www.artlebedev.com)
! 5:
! 6: Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf)
! 7:
! 8: $Id: pa_exec.h,v 1.3 2001/04/09 13:21:14 paf Exp $
! 9: */
! 10:
! 11: #ifndef PA_EXEC_H
! 12: #define PA_EXEC_H
! 13:
! 14: #include "pa_string.h"
! 15: #include "pa_hash.h"
! 16: #include "pa_array.h"
! 17:
! 18: /// @return exit code
! 19: int pa_exec(const String& file_spec,
! 20: const Hash *env, ///< 0 | Hash of String
! 21: const Array *argv, ///< 0 | Array of command line arguments
! 22: const String& in, String& out, String& err);
! 23:
! 24: #endif
E-mail: