2006-12-09 13:33:38 -08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2005-05-14 16:28:52 -07:00
|
|
|
* Copyright (C) 1995-2003 Spencer Kimball and Peter Mattis
|
|
|
|
|
*
|
2009-01-17 14:28:01 -08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2005-05-14 16:28:52 -07:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 14:28:01 -08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2005-05-14 16:28:52 -07:00
|
|
|
* (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
|
2018-07-11 14:47:19 -07:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2005-05-14 16:28:52 -07:00
|
|
|
*/
|
|
|
|
|
|
2006-04-04 10:47:22 -07:00
|
|
|
#ifndef __GIMP_PDB_QUERY_H__
|
|
|
|
|
#define __GIMP_PDB_QUERY_H__
|
2005-05-14 16:28:52 -07:00
|
|
|
|
|
|
|
|
|
2006-04-26 02:13:47 -07:00
|
|
|
gboolean gimp_pdb_dump (GimpPDB *pdb,
|
2014-07-03 05:52:27 -07:00
|
|
|
GFile *file,
|
|
|
|
|
GError **error);
|
2006-04-26 02:13:47 -07:00
|
|
|
gboolean gimp_pdb_query (GimpPDB *pdb,
|
2006-04-04 10:47:22 -07:00
|
|
|
const gchar *name,
|
|
|
|
|
const gchar *blurb,
|
|
|
|
|
const gchar *help,
|
|
|
|
|
const gchar *author,
|
|
|
|
|
const gchar *copyright,
|
|
|
|
|
const gchar *date,
|
|
|
|
|
const gchar *proc_type,
|
|
|
|
|
gint *num_procs,
|
2007-12-05 07:21:45 -08:00
|
|
|
gchar ***procs,
|
|
|
|
|
GError **error);
|
2006-04-26 02:13:47 -07:00
|
|
|
gboolean gimp_pdb_proc_info (GimpPDB *pdb,
|
2006-04-04 10:47:22 -07:00
|
|
|
const gchar *proc_name,
|
|
|
|
|
gchar **blurb,
|
|
|
|
|
gchar **help,
|
|
|
|
|
gchar **author,
|
|
|
|
|
gchar **copyright,
|
|
|
|
|
gchar **date,
|
|
|
|
|
GimpPDBProcType *proc_type,
|
|
|
|
|
gint *num_args,
|
2007-12-05 07:21:45 -08:00
|
|
|
gint *num_values,
|
|
|
|
|
GError **error);
|
2005-05-14 16:28:52 -07:00
|
|
|
|
|
|
|
|
|
2006-04-04 10:47:22 -07:00
|
|
|
#endif /* __GIMP_PDB_QUERY_H__ */
|