X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fcsharpexec.h;h=4a3cb32e1ca6ca4c492561b12e178cce9c801e11;hb=2f2db8cbc28ec95c742c3513bf508d073c714165;hp=040de2a4300a9f418cd321124a2f3ec374b9fbad;hpb=eebfb61f448a11db04a2d5ccd96c1718cca7ef54;p=gnulib.git diff --git a/lib/csharpexec.h b/lib/csharpexec.h index 040de2a43..4a3cb32e1 100644 --- a/lib/csharpexec.h +++ b/lib/csharpexec.h @@ -1,11 +1,11 @@ /* Execute a C# program. - Copyright (C) 2003 Free Software Foundation, Inc. + Copyright (C) 2003, 2009, 2010 Free Software Foundation, Inc. Written by Bruno Haible , 2003. - This program is free software; you can redistribute it and/or modify + 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, or (at your option) - any later version. + the Free Software Foundation; either version 3 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 @@ -13,8 +13,7 @@ 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ #ifndef _CSHARPEXEC_H #define _CSHARPEXEC_H @@ -22,8 +21,8 @@ #include typedef bool execute_fn (const char *progname, - const char *prog_path, char **prog_argv, - void *private_data); + const char *prog_path, char **prog_argv, + void *private_data); /* Execute a C# program. assembly_path is the assembly's pathname (= program name with .exe). @@ -35,10 +34,10 @@ typedef bool execute_fn (const char *progname, Return false if OK, true on error. If quiet, error messages will not be printed. */ extern bool execute_csharp_program (const char *assembly_path, - const char * const *libdirs, - unsigned int libdirs_count, - const char * const *args, - bool verbose, bool quiet, - execute_fn *executer, void *private_data); + const char * const *libdirs, + unsigned int libdirs_count, + const char * const *args, + bool verbose, bool quiet, + execute_fn *executer, void *private_data); #endif /* _CSHARPEXEC_H */