home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2002 April / pcpro0402.iso / essentials / graphics / Gimp / gimp-src-20001226.exe / src / gimp / libgimp / gimpproceduraldb_pdb.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-08-24  |  2.8 KB  |  77 lines

  1. /* LIBGIMP - The GIMP Library
  2.  * Copyright (C) 1995-2000 Peter Mattis and Spencer Kimball
  3.  *
  4.  * gimpproceduraldb_pdb.h
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the
  18.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19.  * Boston, MA 02111-1307, USA.
  20.  */
  21.  
  22. /* NOTE: This file is autogenerated by pdbgen.pl */
  23.  
  24. #ifndef __GIMP_PROCEDURAL_DB_PDB_H__
  25. #define __GIMP_PROCEDURAL_DB_PDB_H__
  26.  
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif /* __cplusplus */
  30.  
  31. /* For information look into the C source or the html documentation */
  32.  
  33.  
  34. gboolean gimp_procedural_db_dump          (gchar             *filename);
  35. gboolean gimp_procedural_db_query         (gchar             *name,
  36.                        gchar             *blurb,
  37.                        gchar             *help,
  38.                        gchar             *author,
  39.                        gchar             *copyright,
  40.                        gchar             *date,
  41.                        gchar             *proc_type,
  42.                        gint              *num_matches,
  43.                        gchar           ***procedure_names);
  44. gboolean _gimp_procedural_db_proc_info    (gchar             *procedure,
  45.                        gchar            **blurb,
  46.                        gchar            **help,
  47.                        gchar            **author,
  48.                        gchar            **copyright,
  49.                        gchar            **date,
  50.                        GimpPDBProcType   *proc_type,
  51.                        gint              *num_args,
  52.                        gint              *num_values);
  53. gboolean gimp_procedural_db_proc_arg      (gchar             *procedure,
  54.                        gint               arg_num,
  55.                        GimpPDBArgType    *arg_type,
  56.                        gchar            **arg_name,
  57.                        gchar            **arg_desc);
  58. gboolean gimp_procedural_db_proc_val      (gchar             *procedure,
  59.                        gint               val_num,
  60.                        GimpPDBArgType    *val_type,
  61.                        gchar            **val_name,
  62.                        gchar            **val_desc);
  63. gboolean _gimp_procedural_db_get_data     (gchar             *identifier,
  64.                        gint              *bytes,
  65.                        guint8           **data);
  66. gint     gimp_procedural_db_get_data_size (gchar             *identifier);
  67. gboolean _gimp_procedural_db_set_data     (gchar             *identifier,
  68.                        gint               bytes,
  69.                        guint8            *data);
  70.  
  71.  
  72. #ifdef __cplusplus
  73. }
  74. #endif /* __cplusplus */
  75.  
  76. #endif /* __GIMP_PROCEDURAL_DB_PDB_H__ */
  77.