X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fcsharpexec.h;h=e1aedf7ce90df749bdc34342cfcdec6d564a7bbd;hb=551ee6493e89f30ea3d1cc75bcaaa3d5e5fab7e1;hp=040de2a4300a9f418cd321124a2f3ec374b9fbad;hpb=eebfb61f448a11db04a2d5ccd96c1718cca7ef54;p=gnulib.git diff --git a/lib/csharpexec.h b/lib/csharpexec.h index 040de2a43..e1aedf7ce 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-2011 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 */