
2003-11-26 Michael Natterer <mitch@gimp.org> * configure.in * plug-ins/script-fu/siod/Makefile.am * plug-ins/script-fu/siod/.cvsignore * plug-ins/script-fu/siod/regex.c * plug-ins/script-fu/siod/slib.c * plug-ins/script-fu/siod/sliba.c * plug-ins/script-fu/siod/trace.c * plug-ins/script-fu/siod/siod.h * plug-ins/script-fu/siod/siodp.h: added new directory for siod. * plug-ins/script-fu/Makefile.am * plug-ins/script-fu/interp_regex.c * plug-ins/script-fu/interp_slib.c * plug-ins/script-fu/interp_sliba.c * plug-ins/script-fu/interp_trace.c * plug-ins/script-fu/siod.h * plug-ins/script-fu/siodp.h: removed siod from here. * plug-ins/script-fu/script-fu-scripts.[ch] * plug-ins/script-fu/script-fu.c * plug-ins/script-fu/siod-wrapper.c * tools/pdbgen/enumcode.pl: changed #includes accordingly. * plug-ins/script-fu/script-fu-constants.c: regenerated. * plug-ins/script-fu/script-fu-scripts.c (script_fu_error_msg): use siod-wrapper.c siod_get_error_msg() instead of accessing siod's global siod_err_msg variable directly.
29 lines
1.1 KiB
C
29 lines
1.1 KiB
C
/* The GIMP -- an image manipulation program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* 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, USA.
|
|
*/
|
|
|
|
#ifndef __SCRIPT_FU_SCRIPTS_H__
|
|
#define __SCRIPT_FU_SCRIPTS_H__
|
|
|
|
#include "script-fu-enums.h"
|
|
|
|
void script_fu_find_scripts (void);
|
|
LISP script_fu_add_script (LISP a);
|
|
void script_fu_report_cc (gchar *command);
|
|
|
|
#endif /* __SCRIPT_FU_SCRIPTS__ */
|