File: gimpcore.def

package info (click to toggle)
gimp 3.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 222,880 kB
  • sloc: ansic: 870,914; python: 10,965; lisp: 10,857; cpp: 7,355; perl: 4,536; sh: 1,753; xml: 972; yacc: 609; lex: 348; javascript: 150; makefile: 42
file content (962 lines) | stat: -rw-r--r-- 25,031 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
EXPORTS
	_gimp_image_get_colormap
	_gimp_image_get_colormap_size
	_gimp_image_set_colormap
	_gimp_unit_get_abbreviation
	_gimp_unit_get_deletion_flag
	_gimp_unit_get_digits
	_gimp_unit_get_factor
	_gimp_unit_get_name
	_gimp_unit_get_number_of_units
	_gimp_unit_get_plural
	_gimp_unit_get_singular
	_gimp_unit_get_symbol
	_gimp_unit_new
	_gimp_unit_set_deletion_flag
	base_exit
	base_init
	blob_diamond
	blob_ellipse
	blob_square
	brightness_contrast_lut_setup
	color_balance
	color_balance_create_lookup_tables
	color_balance_init
	colorize
	colorize_calculate
	colorize_init
	convolve_region
	curves_init
	curves_lut_func
	file_open_image
	file_open_with_display
	file_open_with_proc_and_display
	file_save
	file_utils_filename_to_uri
	file_utils_uri_display_basename
	file_utils_uri_display_name
	file_utils_uri_to_utf8_filename
	floating_sel_anchor
	floating_sel_remove
	floating_sel_to_layer
	gimp_add_mask_type_get_type
	gimp_airbrush_options_get_type
	gimp_area_list_free
	gimp_area_list_process
	gimp_area_new
	gimp_base_config_get_type
	gimp_bezier_stroke_extend
	gimp_bezier_stroke_new
	gimp_brush_core_get_type
	gimp_brush_core_set_brush
	gimp_brush_generated_get_angle
	gimp_brush_generated_get_aspect_ratio
	gimp_brush_generated_get_hardness
	gimp_brush_generated_get_radius
	gimp_brush_generated_get_shape
	gimp_brush_generated_get_spikes
	gimp_brush_generated_get_type
	gimp_brush_generated_set_angle
	gimp_brush_generated_set_aspect_ratio
	gimp_brush_generated_set_hardness
	gimp_brush_generated_set_radius
	gimp_brush_generated_set_shape
	gimp_brush_generated_set_spikes
	gimp_brush_generated_shape_get_type
	gimp_brush_get_mask
	gimp_brush_get_spacing
	gimp_brush_get_standard
	gimp_brush_get_type
	gimp_brush_pipe_get_type
	gimp_brush_set_spacing
	gimp_bucket_fill_mode_get_type
	gimp_buffer_get_height
	gimp_buffer_get_type
	gimp_buffer_get_width
	gimp_buffer_new
	gimp_channel_all
	gimp_channel_border
	gimp_channel_boundary
	gimp_channel_bounds
	gimp_channel_clear
	gimp_channel_feather
	gimp_channel_flood
	gimp_channel_get_type
	gimp_channel_grow
	gimp_channel_invert
	gimp_channel_is_empty
	gimp_channel_new
	gimp_channel_new_from_component
	gimp_channel_new_mask
	gimp_channel_ops_get_type
	gimp_channel_push_undo
	gimp_channel_select_alpha
	gimp_channel_select_by_color
	gimp_channel_select_channel
	gimp_channel_select_component
	gimp_channel_select_ellipse
	gimp_channel_select_path
	gimp_channel_select_polygon
	gimp_channel_select_rectangle
	gimp_channel_set_color
	gimp_channel_sharpen
	gimp_channel_shrink
	gimp_channel_type_get_type
;	gimp_channel_value
	gimp_clone_get_type
	gimp_clone_options_get_type
	gimp_config_connect
	gimp_config_connect_full
	gimp_config_dump
	gimp_config_file_backup_on_error
	gimp_config_file_copy
	gimp_container_add
	gimp_container_add_handler
	gimp_container_foreach
	gimp_container_freeze
	gimp_container_frozen
	gimp_container_get_child_by_index
	gimp_container_get_child_by_name
	gimp_container_get_child_index
	gimp_container_get_type
	gimp_container_have
	gimp_container_insert
	gimp_container_num_children
	gimp_container_remove
	gimp_container_remove_handler
	gimp_container_reorder
	gimp_container_thaw
	gimp_context_copy_properties
	gimp_context_copy_property
	gimp_context_define_properties
	gimp_context_define_property
	gimp_context_get_background
	gimp_context_get_brush
	gimp_context_get_buffer
	gimp_context_get_by_type
	gimp_context_get_display
	gimp_context_get_font
	gimp_context_get_font_name
	gimp_context_get_foreground
	gimp_context_get_gradient
	gimp_context_get_image
	gimp_context_get_imagefile
	gimp_context_get_opacity
	gimp_context_get_paint_mode
	gimp_context_get_palette
	gimp_context_get_pattern
	gimp_context_get_template
	gimp_context_get_tool
	gimp_context_get_type
	gimp_context_new
	gimp_context_set_background
	gimp_context_set_brush
	gimp_context_set_by_type
	gimp_context_set_default_colors
	gimp_context_set_display
	gimp_context_set_font_name
	gimp_context_set_foreground
	gimp_context_set_gradient
	gimp_context_set_image
	gimp_context_set_opacity
	gimp_context_set_paint_mode
	gimp_context_set_parent
	gimp_context_set_pattern
	gimp_context_set_serialize_properties
	gimp_context_set_template
	gimp_context_set_tool
	gimp_context_swap_colors
	gimp_context_tool_changed
	gimp_context_type_to_prop_name
	gimp_context_type_to_signal_name
	gimp_convert_dither_type_get_type
	gimp_convolve_options_get_type
	gimp_core_config_get_type
	gimp_create_display
	gimp_create_image
	gimp_curve_type_get_type
	gimp_dash_preset_get_type
	gimp_data_dirty
	gimp_data_factory_data_delete
	gimp_data_factory_data_duplicate
	gimp_data_factory_data_init
	gimp_data_factory_data_new
	gimp_data_factory_data_save
	gimp_data_factory_data_save_single
	gimp_data_factory_get_type
	gimp_data_freeze
	gimp_data_get_type
	gimp_data_thaw
	gimp_debug_memsize
	gimp_display_config_get_type
	gimp_dodge_burn_options_get_type
	gimp_drawable_blend
	gimp_drawable_bucket_fill
	gimp_drawable_bucket_fill_full
	gimp_drawable_bytes
	gimp_drawable_calculate_histogram
	gimp_drawable_desaturate
	gimp_drawable_equalize
	gimp_drawable_fill_by_type
	gimp_drawable_foreground_extract_siox_done
	gimp_drawable_foreground_extract_siox_init
	gimp_drawable_get_type
	gimp_drawable_has_alpha
	gimp_drawable_invert
	gimp_drawable_is_indexed
	gimp_drawable_is_rgb
	gimp_drawable_mask_bounds
	gimp_drawable_offset
	gimp_drawable_set_tiles
	gimp_drawable_transform_cut
	gimp_drawable_transform_paste
	gimp_drawable_transform_tiles_affine
	gimp_drawable_transform_tiles_flip
	gimp_drawable_type
	gimp_edit_clear
	gimp_edit_copy
	gimp_edit_cut
	gimp_edit_fill
	gimp_edit_paste
	gimp_edit_paste_as_new
	gimp_environ_table_add
	gimp_eraser_options_get_type
	gimp_exit
	gimp_fill_type_get_type
	gimp_font_get_standard
	gimp_font_get_type
	gimp_fonts_load
	gimp_get_default_language
	gimp_get_type
	gimp_get_user_context
	gimp_gradient_get_color_at
	gimp_gradient_get_segment_at
	gimp_gradient_get_standard
	gimp_gradient_get_type
	gimp_gradient_segment_get_first
	gimp_gradient_segment_get_last
	gimp_gradient_segment_get_left_color
	gimp_gradient_segment_get_right_color
	gimp_gradient_segment_new
	gimp_gradient_segment_range_blend
	gimp_gradient_segment_range_compress
	gimp_gradient_segment_range_delete
	gimp_gradient_segment_range_flip
	gimp_gradient_segment_range_move
	gimp_gradient_segment_range_recenter_handles
	gimp_gradient_segment_range_redistribute_handles
	gimp_gradient_segment_range_replicate
	gimp_gradient_segment_range_set_blending_function
	gimp_gradient_segment_range_set_coloring_type
	gimp_gradient_segment_range_split_midpoint
	gimp_gradient_segment_range_split_uniform
	gimp_gradient_segment_set_left_pos
	gimp_gradient_segment_set_middle_pos
	gimp_gradient_segments_free
	gimp_gradient_type_get_type
	gimp_grid_get_type
	gimp_gui_config_get_type
	gimp_help
	gimp_histogram_calculate
	gimp_histogram_channel_get_type
	gimp_histogram_get_count
	gimp_histogram_get_maximum
	gimp_histogram_get_mean
	gimp_histogram_get_median
	gimp_histogram_get_std_dev
	gimp_histogram_get_value
	gimp_histogram_n_components
	gimp_histogram_new
	gimp_image_add_channel
	gimp_image_add_colormap_entry
	gimp_image_add_hguide
	gimp_image_add_layer
	gimp_image_add_vectors
	gimp_image_add_vguide
	gimp_image_base_type
	gimp_image_base_type_with_alpha
	gimp_image_contiguous_region_by_seed
	gimp_image_convert
	gimp_image_crop
	gimp_image_crop_auto_shrink
	gimp_image_duplicate
	gimp_image_find_guide
	gimp_image_flatten
	gimp_image_flip
	gimp_image_floating_sel
	gimp_image_flush
	gimp_image_get_active_channel
	gimp_image_get_active_layer
	gimp_image_get_active_vectors
	gimp_image_get_by_ID
	gimp_image_get_channels
	gimp_image_get_colormap_entry
	gimp_image_get_component_active
	gimp_image_get_component_index
	gimp_image_get_component_visible
	gimp_image_get_filename
	gimp_image_get_grid
	gimp_image_get_height
	gimp_image_get_ID
	gimp_image_get_layer_index
	gimp_image_get_layers
	gimp_image_get_mask
	gimp_image_get_quick_mask_color
	gimp_image_get_quick_mask_state
	gimp_image_get_type
	gimp_image_get_uri_or_untitled
	gimp_image_get_vectors
	gimp_image_get_vectors_index
	gimp_image_get_width
	gimp_image_has_alpha
	gimp_image_is_empty
	gimp_image_layer_boundary
	gimp_image_lower_channel
	gimp_image_lower_channel_to_bottom
	gimp_image_lower_layer
	gimp_image_lower_layer_to_bottom
	gimp_image_lower_vectors
	gimp_image_lower_vectors_to_bottom
	gimp_image_map_abort
	gimp_image_map_apply
	gimp_image_map_clear
	gimp_image_map_commit
	gimp_image_map_new
	gimp_image_merge_down
	gimp_image_merge_visible_layers
	gimp_image_merge_visible_vectors
	gimp_image_move_guide
	gimp_image_new_get_last_template
	gimp_image_new_set_last_template
	gimp_image_pick_color
	gimp_image_pick_correlate_layer
	gimp_image_position_channel
	gimp_image_position_layer
	gimp_image_position_vectors
	gimp_image_quick_mask_invert
	gimp_image_raise_channel
	gimp_image_raise_channel_to_top
	gimp_image_raise_layer
	gimp_image_raise_layer_to_top
	gimp_image_raise_vectors
	gimp_image_raise_vectors_to_top
	gimp_image_redo
	gimp_image_remove_channel
	gimp_image_remove_guide
	gimp_image_remove_layer
	gimp_image_remove_vectors
	gimp_image_resize
	gimp_image_rotate
	gimp_image_scale
	gimp_image_scale_check
	gimp_image_selection_control
	gimp_image_set_active_channel
	gimp_image_set_active_layer
	gimp_image_set_active_vectors
	gimp_image_set_colormap_entry
	gimp_image_set_component_active
	gimp_image_set_component_visible
	gimp_image_set_grid
	gimp_image_set_quick_mask_color
	gimp_image_set_quick_mask_state
	gimp_image_set_resolution
	gimp_image_set_unit
	gimp_image_snap_point
	gimp_image_snap_rectangle
	gimp_image_undo
	gimp_image_undo_can_compress
	gimp_image_undo_disable
	gimp_image_undo_enable
	gimp_image_undo_event
	gimp_image_undo_group_end
	gimp_image_undo_group_start
	gimp_image_undo_is_enabled
	gimp_image_undo_push
	gimp_image_undo_push_drawable_mod
	gimp_image_undo_push_image_grid
	gimp_image_undo_push_item_visibility
	gimp_image_undo_push_text_layer
	gimp_image_undo_push_text_layer_modified
	gimp_image_undo_push_vectors_mod
	gimp_image_update_guide
	gimp_imagefile_create_thumbnail
	gimp_imagefile_get_desc_string
	gimp_imagefile_get_type
	gimp_imagefile_new
	gimp_imagefile_update
	gimp_initialize
	gimp_ink_blob_type_get_type
	gimp_ink_options_get_type
	gimp_interpolation_type_get_type
	gimp_item_convert
	gimp_item_duplicate
	gimp_item_flip
	gimp_item_get_by_ID
	gimp_item_get_ID
	gimp_item_get_image
	gimp_item_get_type
	gimp_item_get_visible
	gimp_item_height
	gimp_item_is_text_layer
	gimp_item_is_vector_layer
	gimp_item_offsets
	gimp_item_rename
	gimp_item_resize
	gimp_item_rotate
	gimp_item_scale_by_origin
	gimp_item_set_visible
	gimp_item_stroke
	gimp_item_transform
	gimp_item_translate
	gimp_item_undo_get_type
	gimp_item_width
	gimp_layer_add_alpha
	gimp_layer_add_mask
	gimp_layer_apply_mask
	gimp_layer_create_mask
	gimp_layer_get_mask
	gimp_layer_get_mode
	gimp_layer_get_opacity
;	gimp_layer_get_preserve_trans
	gimp_layer_get_type
	gimp_layer_is_floating_sel
	gimp_layer_mask_get_apply
	gimp_layer_mask_get_edit
	gimp_layer_mask_get_layer
	gimp_layer_mask_get_show
	gimp_layer_mask_get_type
	gimp_layer_mask_set_apply
	gimp_layer_mask_set_edit
	gimp_layer_mask_set_show
	gimp_layer_mode_effects_get_type
	gimp_layer_new
	gimp_layer_resize_to_image
	gimp_layer_set_mode
	gimp_layer_set_opacity
;	gimp_layer_set_preserve_trans
	gimp_list_get_type
	gimp_list_new
	gimp_list_new_weak
	gimp_list_reverse
	gimp_load_config
	gimp_lut_free
	gimp_lut_new
	gimp_lut_setup
	gimp_marshal_BOOLEAN__ENUM_INT
	gimp_marshal_BOOLEAN__OBJECT_POINTER
	gimp_marshal_BOOLEAN__OBJECT_POINTER_STRING
	gimp_marshal_VOID__DOUBLE_DOUBLE
	gimp_marshal_VOID__ENUM_ENUM_BOXED_INT
	gimp_marshal_VOID__INT_INT
	gimp_marshal_VOID__OBJECT_OBJECT
	gimp_marshal_VOID__OBJECT_POINTER
	gimp_marshal_VOID__POINTER_BOXED
	gimp_marshal_VOID__POINTER_ENUM
	gimp_marshal_VOID__STRING_BOOLEAN_UINT_FLAGS
	gimp_marshal_VOID__STRING_FLAGS
	gimp_message
	gimp_modules_refresh
	gimp_new
	gimp_object_get_memsize
	gimp_object_get_name
	gimp_object_get_type
	gimp_object_set_name
	gimp_orientation_type_get_type
	gimp_paint_core_cancel
	gimp_paint_core_cleanup
	gimp_paint_core_finish
	gimp_paint_core_interpolate
	gimp_paint_core_paint
	gimp_paint_core_start
	gimp_paint_info_get_type
	gimp_paint_options_get_brush_mode
	gimp_paint_options_get_type
	gimp_palette_add_entry
	gimp_palette_delete_entry
	gimp_palette_get_standard
	gimp_palette_get_type
	gimp_palette_import_from_file
	gimp_palette_import_from_gradient
	gimp_palette_import_from_image
	gimp_palette_import_from_indexed_image
	gimp_param_memsize_get_type
	gimp_param_rgb_get_type
	gimp_param_spec_rgb
	gimp_param_spec_unit
	gimp_param_unit_get_type
	gimp_parameters_append
	gimp_parameters_append_valist
	gimp_parameters_free
	gimp_path_get_type
	gimp_path_anchor_select
	gimp_path_bounds
	gimp_path_export_file
	gimp_path_export_string
	gimp_path_freeze
	gimp_path_import_buffer
	gimp_path_import_file
	gimp_path_new
	gimp_path_stroke_add
	gimp_path_stroke_get_next
	gimp_path_stroke_remove
	gimp_path_thaw
	gimp_pattern_get_standard
	gimp_pattern_get_type
	gimp_pencil_options_get_type
	gimp_pickable_get_color_at
	gimp_pickable_get_image_type
	gimp_pickable_interface_get_type
	gimp_pickable_pick_color
	gimp_projection_flush
	gimp_projection_flush_now
	gimp_projection_get_bytes
	gimp_projection_get_image_type
	gimp_projection_get_tiles
	gimp_rc_get_type
	gimp_rc_new
	gimp_rc_save
	gimp_rc_set_autosave
	gimp_rectangle_intersect
	gimp_repeat_mode_get_type
	gimp_restore
	gimp_scan_convert_free
	gimp_scan_convert_new
	gimp_scan_convert_render
	gimp_selection_float
	gimp_selection_get_type
	gimp_selection_save
	gimp_set_busy
	gimp_smudge_options_get_type
	gimp_stroke_anchor_convert
	gimp_stroke_anchor_delete
	gimp_stroke_anchor_insert
	gimp_stroke_anchor_is_insertable
	gimp_stroke_anchor_move_absolute
	gimp_stroke_anchor_move_relative
	gimp_stroke_connect_stroke
	gimp_stroke_get_draw_anchors
	gimp_stroke_get_draw_controls
	gimp_stroke_get_draw_lines
	gimp_stroke_interpolate
	gimp_stroke_is_empty
	gimp_stroke_is_extendable
	gimp_stroke_nearest_point_get
	gimp_stroke_open
	gimp_stroke_options_get_type
	gimp_stroke_point_is_movable
	gimp_stroke_point_move_absolute
	gimp_stroke_translate
	gimp_template_create_image
	gimp_template_get_type
	gimp_template_new
	gimp_template_set_from_image
	gimp_text_direction_get_type
	gimp_text_get_type
	gimp_text_justification_get_type
	gimp_text_layer_discard
	gimp_text_layer_get_text
	gimp_text_layer_get_type
	gimp_text_layer_new
	gimp_text_layer_set
	gimp_text_undo_get_type
	gimp_text_path_new
	gimp_tool_info_get_standard
	gimp_tool_info_get_type
	gimp_tool_info_new
	gimp_tool_info_set_standard
	gimp_tool_options_deserialize
	gimp_tool_options_get_type
	gimp_tool_options_reset
	gimp_tool_options_serialize
	gimp_tool_presets_new
	gimp_transfer_mode_get_type
	gimp_transform_direction_get_type
	gimp_transform_matrix_perspective
	gimp_transform_matrix_rotate_center
	gimp_transform_matrix_scale
	gimp_transform_matrix_shear
	gimp_undo_create_preview
	gimp_undo_free
	gimp_undo_get_type
	gimp_undo_refresh_preview
	gimp_undo_stack_get_type
	gimp_undo_stack_peek
	gimp_undo_stack_pop_undo
	gimp_unset_busy
	gimp_viewable_calc_preview_size
	gimp_viewable_get_description
	gimp_viewable_get_new_preview
	gimp_viewable_get_pixbuf
	gimp_viewable_get_popup_size
	gimp_viewable_get_preview
	gimp_viewable_get_preview_size
	gimp_viewable_get_stock_id
	gimp_viewable_get_type
	gimp_viewable_invalidate_preview
	gimp_xml_parser_free
	gimp_xml_parser_new
	gimp_xml_parser_parse_file
	hue_saturation
	hue_saturation_calculate_transfers
	hue_saturation_init
	levels_init
	levels_lut_func
	pixel_region_init
	pixel_region_set_row
	pixel_regions_process
	pixel_regions_register
	posterize_lut_setup
	tile_manager_read_pixel_data_1
	temp_buf_data
	temp_buf_data_clear
	temp_buf_free
	temp_buf_new
	temp_buf_resize
	temp_buf_scale
	threshold
	tile_data_pointer
	tile_eheight
	tile_ewidth
	tile_manager_bpp
	tile_manager_get_offsets
	tile_manager_get_tile
	tile_manager_get_tile_coordinates
	tile_manager_height
	tile_manager_new
	tile_manager_ref
	tile_manager_set_offsets
	tile_manager_set_validate_proc
	tile_manager_unref
	tile_manager_width
	tile_release
; widget-enums.obj, display-enums.obj
	gimp_active_color_get_type
	gimp_aspect_type_get_type
	gimp_canvas_padding_mode_get_type
	gimp_color_frame_mode_get_type
	gimp_color_pick_state_get_type
	gimp_histogram_scale_get_type
	gimp_tab_style_get_type
	gimp_view_type_get_type
;	gimp_zoom_type_get_type
; gimpdisplayoptions.obj
	gimp_display_options_fullscreen_get_type
	gimp_display_options_get_type

gimp_color_dialog_state_get_type
gimp_container_filter
gimp_context_set_palette
gimp_convert_palette_type_get_type
gimp_drawable_levels_stretch
gimp_image_get_resolution
gimp_image_get_unit
gimp_image_parasite_find
gimp_image_resize_to_layers
gimp_imagefile_create_thumbnail_weak
gimp_marshal_VOID__BOXED_ENUM
gimp_progress_cancel
gimp_progress_end
gimp_progress_get_value
gimp_progress_interface_get_type
gimp_progress_is_active
gimp_progress_set_text
gimp_progress_set_value
gimp_progress_start
gimp_stroke_desc_new
gimp_view_size_get_type
gimp_templates_migrate
file_utils_filename_from_uri
gimp_drawable_get_sub_preview
gimp_drawable_preview_bytes
gimp_edit_copy_visible
gimp_image_get_channel_index
gimp_image_get_save_proc
gimp_lut_process
gimp_progress_pulse
gimp_image_find_sample_point
gimp_image_move_sample_point
gimp_image_remove_sample_point
gimp_image_add_sample_point_at_pos
gimp_gradient_segment_split_midpoint
gimp_image_resize_with_layers
gimp_image_update_sample_point
gimp_palette_set_columns
gimp_path_warp_path
gimp_buffer_new_from_pixbuf
gimp_container_is_empty
gimp_data_factory_data_refresh
gimp_layer_new_from_pixbuf
gimp_viewable_get_new_pixbuf
gimp_viewable_get_size
gimp_container_clear
gimp_dash_pattern_free
gimp_dash_pattern_new_from_preset
gimp_dash_pattern_copy
gimp_dash_pattern_new_from_segments
boundary_find
boundary_sort
gimp_contexts_clear
gimp_contexts_load
gimp_contexts_save
gimp_edit_named_copy
gimp_edit_named_copy_visible
gimp_edit_named_cut
gimp_get_default_unit
gimp_layer_flatten
gimp_layer_get_lock_alpha
gimp_layer_set_lock_alpha
gimp_pickable_get_opacity_at
gimp_undo_stack_get_depth
pixel_region_init_data
pixel_region_init_temp_buf
gimp_drawable_foreground_extract_siox
gimp_scan_convert_add_polyline
gimp_scan_convert_compose
gimp_scan_convert_render_value
gimp_scan_convert_stroke

gimp_array_free
gimp_array_new
gimp_drawable_get_tiles
gimp_drawable_id_get_type
gimp_float_array_get_type
gimp_histogram_get_threshold
gimp_image_id_get_type
gimp_int32_get_type
gimp_int8_array_get_type
gimp_object_set_static_name
gimp_object_take_name
gimp_param_drawable_id_get_type
gimp_param_image_id_get_type
gimp_pdb_execute_procedure_by_name
gimp_pdb_execute_procedure_by_name_args
gimp_pdb_get_type
gimp_pdb_lookup_procedure
gimp_pickable_flush
gimp_pickable_get_bytes
gimp_pickable_get_tiles
gimp_plug_in_manager_data_free
gimp_plug_in_manager_get_help_domain
gimp_plug_in_manager_get_help_domains
gimp_procedure_execute_async
gimp_procedure_get_arguments
gimp_procedure_get_type
gimp_user_install_free
gimp_user_install_new
gimp_user_install_run
gimp_user_install_set_log_handler
gimp_value_array_truncate
gimp_value_set_drawable
gimp_value_set_image

gimp_brush_clipboard_new
gimp_guide_get_ID
gimp_guide_get_orientation
gimp_guide_get_position
gimp_guide_get_type
gimp_guide_new
gimp_guide_removed
gimp_guide_set_orientation
gimp_guide_set_position
gimp_image_item_list_flip
gimp_image_item_list_get_list
gimp_image_item_list_rotate
gimp_image_item_list_transform
gimp_image_item_list_translate
gimp_param_spec_get_desc
gimp_pattern_clipboard_new
gimp_plug_in_manager_history_clear
gimp_plug_in_manager_history_remove
gimp_plug_in_procedure_add_menu_path
gimp_plug_in_procedure_find
gimp_plug_in_procedure_get_label
gimp_plug_in_procedure_get_type
gimp_plug_in_procedure_new
gimp_plug_in_procedure_set_file_proc
gimp_plug_in_procedure_set_icon
gimp_plug_in_procedure_set_image_types
gimp_plug_in_procedure_set_mime_type
gimp_plug_in_procedure_set_thumb_loader
gimp_temporary_procedure_get_type
gimp_temporary_procedure_new
gimp_align_reference_type_get_type
gimp_drawable_mask_intersect
gimp_image_arrange_objects
gimp_image_contiguous_region_by_color
gimp_image_coords_in_active_pickable
gimp_image_strong_redo
gimp_image_strong_undo
gimp_item_id_get_type
gimp_item_set_get_type
gimp_palette_import_from_drawable
gimp_plug_in_manager_history_add
gimp_plug_in_manager_history_length
gimp_plug_in_manager_history_nth
gimp_plug_in_manager_history_size
gimp_plug_in_procedure_get_help_id
gimp_plug_in_procedure_get_pixbuf
gimp_plug_in_procedure_get_progname
gimp_plug_in_procedure_get_sensitive
gimp_plug_in_procedure_get_stock_id
gimp_progress_get_window
gimp_select_criterion_get_type
gimp_show_message
gimp_value_set_item
gimp_gradient_has_fg_bg_segments
gimp_gradient_segment_set_left_color
gimp_gradient_segment_set_left_color_type
gimp_gradient_segment_set_right_color
gimp_gradient_segment_set_right_color_type
gimp_heal_get_type
gimp_paint_core_get_type
gimp_source_core_get_type
gimp_source_options_get_type
gimp_perspective_clone_get_source_point
gimp_perspective_clone_get_type
gimp_perspective_clone_options_get_type

gimp_brush_generated_load
gimp_brush_generated_save
gimp_brush_pipe_load
gimp_palette_load
gimp_palette_load_act
gimp_palette_load_detect_format
gimp_palette_load_psp
gimp_palette_load_riff
gimp_palette_save
gimp_pattern_load
gimp_pattern_load_pixbuf
gimp_get_tool_info
gimp_gradient_save_pov
gimp_message_valist
gimp_viewable_set_stock_id

gimp_plug_in_procedure_get_blurb

gimp_channel_select_round_rect
gimp_drawable_undo_get_type
gimp_message_severity_get_type
gimp_progress_message
plug_in_icc_profile_info

file_open_layers
gimp_brush_core_create_bound_segs
gimp_image_add_layers
gimp_palette_find_entry
gimp_param_int32_get_type
gimp_param_item_id_get_type
gimp_param_string_get_type
gimp_tool_options_create_folder
gimp_tool_options_delete
gimp_tool_presets_get_options
gimp_tool_presets_load
gimp_tool_presets_save
plug_in_icc_profile_file_info

gimp_dash_pattern_get_type
gimp_dash_pattern_fill_segments

file_open_from_command_line
gimp_color_pick_mode_get_type
gimp_undo_get_age
gimp_undo_reset_age

file_procedure_find
file_procedure_find_by_extension
gimp_container_get_neighbor_of_active
gimp_image_resize_to_selection
gimp_param_display_id_get_type
gimp_projection_get_level
gimp_projection_get_tiles_at_level
gimp_projection_get_type
gimp_sub_progress_get_type
gimp_sub_progress_new
gimp_sub_progress_set_step
gimp_value_set_display
tile_swap_exit

gimp_image_parasite_attach
gimp_image_parasite_detach

gimp_image_get_load_proc

gimp_log
gimp_logv
gimp_log_flags
gimp_log_init
gimp_viewable_preview_is_frozen
gimp_curve_new
gimp_curve_get_type
gimp_curve_reset
gimp_curve_set_point
gimp_curve_get_uchar
gimp_curve_move_point
gimp_curve_set_sample
gimp_curve_set_curve_type
gimp_curve_get_closest_point
gimp_gegl_init
gimp_image_get_guides
gimp_image_get_sample_points
gimp_plug_in_manager_get_menu_branches
desaturate_region
file_utils_filename_is_uri
get_pid
gimp_brightness_contrast_config_get_type
gimp_brightness_contrast_config_set_node
gimp_brightness_contrast_config_to_levels_config
gimp_buffer_get_tiles
gimp_color_balance_config_get_type
gimp_color_balance_config_reset_range
gimp_color_balance_config_to_cruft
gimp_colorize_config_get_type
gimp_colorize_config_to_cruft
gimp_container_get_first_child
gimp_context_display_changed
gimp_curve_get_curve_type
gimp_curve_get_n_points
gimp_curve_get_n_samples
gimp_curve_get_point
gimp_curve_map_value
gimp_curves_config_get_type
gimp_curves_config_load_cruft
gimp_curves_config_save_cruft
gimp_curves_config_to_cruft
gimp_desaturate_config_get_type
gimp_display_options_no_image_get_type
gimp_histogram_duplicate
gimp_histogram_ref
gimp_histogram_unref
gimp_hue_saturation_config_get_type
gimp_hue_saturation_config_reset_range
gimp_hue_saturation_config_to_cruft
gimp_image_get_projection
gimp_image_map_config_compare
gimp_image_map_config_get_type
gimp_imagefile_set_mime_type
gimp_is_restored
gimp_item_is_attached
gimp_layer_new_from_tiles
gimp_levels_config_adjust_by_colors
gimp_levels_config_get_type
gimp_levels_config_load_cruft
gimp_levels_config_reset_channel
gimp_levels_config_save_cruft
gimp_levels_config_stretch
gimp_levels_config_to_cruft
gimp_levels_config_to_curves_config
gimp_list_set_sort_func
gimp_marshal_BOOLEAN__STRING
gimp_marshal_VOID__DOUBLE
gimp_marshal_VOID__DOUBLE_DOUBLE_DOUBLE_DOUBLE
gimp_operation_hue_saturation_map
gimp_operation_levels_map_input
gimp_path_make_bezier
gimp_perspective_clone_set_transform
gimp_posterize_config_get_type
gimp_recent_list_load
gimp_scan_convert_compose_value
gimp_stroke_options_take_dash_pattern
gimp_threshold_config_get_type
gimp_threshold_config_to_cruft
gimp_tool_info_build_options_filename
gimp_use_gegl