1*946379e7Schristos /* Compile a C# program. 2*946379e7Schristos Copyright (C) 2003 Free Software Foundation, Inc. 3*946379e7Schristos Written by Bruno Haible <bruno@clisp.org>, 2003. 4*946379e7Schristos 5*946379e7Schristos This program is free software; you can redistribute it and/or modify 6*946379e7Schristos it under the terms of the GNU General Public License as published by 7*946379e7Schristos the Free Software Foundation; either version 2, or (at your option) 8*946379e7Schristos any later version. 9*946379e7Schristos 10*946379e7Schristos This program is distributed in the hope that it will be useful, 11*946379e7Schristos but WITHOUT ANY WARRANTY; without even the implied warranty of 12*946379e7Schristos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13*946379e7Schristos GNU General Public License for more details. 14*946379e7Schristos 15*946379e7Schristos You should have received a copy of the GNU General Public License 16*946379e7Schristos along with this program; if not, write to the Free Software Foundation, 17*946379e7Schristos Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ 18*946379e7Schristos 19*946379e7Schristos #ifndef _CSHARPCOMP_H 20*946379e7Schristos #define _CSHARPCOMP_H 21*946379e7Schristos 22*946379e7Schristos #include <stdbool.h> 23*946379e7Schristos 24*946379e7Schristos /* Compile a set of C# source files to bytecode. 25*946379e7Schristos sources is an array of source file names, including resource files. 26*946379e7Schristos libdirs is a list of directories to be searched for libraries. 27*946379e7Schristos libraries is a list of libraries on which the program depends. 28*946379e7Schristos output_file is the name of the output file; it should end in .exe or .dll. 29*946379e7Schristos If verbose, the command to be executed will be printed. 30*946379e7Schristos Return false if OK, true on error. */ 31*946379e7Schristos extern bool compile_csharp_class (const char * const *sources, 32*946379e7Schristos unsigned int sources_count, 33*946379e7Schristos const char * const *libdirs, 34*946379e7Schristos unsigned int libdirs_count, 35*946379e7Schristos const char * const *libraries, 36*946379e7Schristos unsigned int libraries_count, 37*946379e7Schristos const char *output_file, 38*946379e7Schristos bool optimize, bool debug, 39*946379e7Schristos bool verbose); 40*946379e7Schristos 41*946379e7Schristos #endif /* _CSHARPCOMP_H */ 42