~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to libgimp/gimp.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-10-06 13:30:41 UTC
  • mto: This revision was merged to the branch mainline in revision 35.
  • Revision ID: james.westby@ubuntu.com-20081006133041-3panbkcanaymfsmp
Tags: upstream-2.6.0
ImportĀ upstreamĀ versionĀ 2.6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
  guint8           *d_int8array;
129
129
  gdouble          *d_floatarray;
130
130
  gchar           **d_stringarray;
 
131
  GimpRGB          *d_colorarray;
131
132
  GimpRGB           d_color;
132
133
  GimpParamRegion   d_region;
133
134
  gint32            d_display;
198
199
   int                                                  \
199
200
   main (int argc, char *argv[])                        \
200
201
   {                                                    \
201
 
     return gimp_main (&PLUG_IN_INFO, argc, argv);      \
 
202
     /* Use __argc and __argv here, too, as they work   \
 
203
      * better with mingw-w64.                          \
 
204
      */                                                \
 
205
     return gimp_main (&PLUG_IN_INFO, __argc, __argv);  \
202
206
   }
203
207
#else
204
208
#  define MAIN()                                        \
298
302
 
299
303
/* Destroy the an array of GimpParamDef's. This is useful for
300
304
 *  destroying the return values returned by a call to
301
 
 *  'gimp_query_procedure'.
 
305
 *  'gimp_procedural_db_proc_info'.
302
306
 */
303
307
void           gimp_destroy_paramdefs   (GimpParamDef    *paramdefs,
304
308
                                         gint             n_params);
305
309
 
 
310
/* Retrieve the error message for the last procedure call.
 
311
 */
 
312
const gchar  * gimp_get_pdb_error       (void);
 
313
 
306
314
 
307
315
/* Return various constants given by the GIMP core at plug-in config time.
308
316
 */
321
329
const gchar  * gimp_wm_class            (void) G_GNUC_CONST;
322
330
const gchar  * gimp_display_name        (void) G_GNUC_CONST;
323
331
gint           gimp_monitor_number      (void) G_GNUC_CONST;
 
332
guint32        gimp_user_time           (void) G_GNUC_CONST;
324
333
 
325
334
const gchar  * gimp_get_progname        (void) G_GNUC_CONST;
326
335