/* Copyright (C) 1996, 1999 artofcode LLC. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA, 02111-1307. */ /*$Id: imainarg.h,v 1.3.2.1.2.1 2003/01/17 00:49:04 giles Exp $ */ /* argv/argc interface to imainarg.c */ #ifndef imainarg_INCLUDED # define imainarg_INCLUDED /* Define an opaque type for an interpreter instance. See imain.h. */ #ifndef gs_main_instance_DEFINED # define gs_main_instance_DEFINED typedef struct gs_main_instance_s gs_main_instance; #endif /* * As a shortcut for very high-level clients, we define a single call * that does the equivalent of command line invocation, passing argc * and argv. This call includes calling init0 through init2. * argv should really be const char *[], but ANSI C requires writable * strings (which, however, it forbids the callee to modify!). */ int gs_main_init_with_args(P3(gs_main_instance * minst, int argc, char *argv[])); /* * Run the 'start' procedure (after processing the command line). */ int gs_main_run_start(P1(gs_main_instance * minst)); #endif /* imainarg_INCLUDED */