New upstream version 2.10.24
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
# Makefile.in generated by automake 1.16.2 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.16.3 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2020 Free Software Foundation, Inc.
|
||||
@ -90,14 +90,8 @@ build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
subdir = app/core
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4macros/gtk-doc.m4 \
|
||||
$(top_srcdir)/m4macros/intltool.m4 \
|
||||
$(top_srcdir)/m4macros/libtool.m4 \
|
||||
$(top_srcdir)/m4macros/ltoptions.m4 \
|
||||
$(top_srcdir)/m4macros/ltsugar.m4 \
|
||||
$(top_srcdir)/m4macros/ltversion.m4 \
|
||||
$(top_srcdir)/m4macros/lt~obsolete.m4 \
|
||||
$(top_srcdir)/acinclude.m4 $(top_srcdir)/m4macros/alsa.m4 \
|
||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
||||
$(top_srcdir)/m4macros/alsa.m4 \
|
||||
$(top_srcdir)/m4macros/ax_compare_version.m4 \
|
||||
$(top_srcdir)/m4macros/ax_cxx_compile_stdcxx.m4 \
|
||||
$(top_srcdir)/m4macros/ax_gcc_func_attribute.m4 \
|
||||
@ -1828,7 +1822,8 @@ all-am: Makefile $(LIBRARIES)
|
||||
installdirs:
|
||||
install: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) install-am
|
||||
install-exec: install-exec-am
|
||||
install-exec: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
@ -2378,7 +2373,7 @@ ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: all check install install-am install-strip
|
||||
.MAKE: all check install install-am install-exec install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||
clean-generic clean-libtool clean-noinstLIBRARIES \
|
||||
|
@ -60,6 +60,7 @@ struct _Gimp
|
||||
GimpGui gui; /* gui vtable */
|
||||
|
||||
gboolean restored; /* becomes TRUE in gimp_restore() */
|
||||
gboolean initialized; /* Fully initialized (only set once at start). */
|
||||
|
||||
gint busy;
|
||||
guint busy_idle_id;
|
||||
|
@ -221,7 +221,8 @@ gimp_image_snap_point (GimpImage *image,
|
||||
gboolean snap_to_guides,
|
||||
gboolean snap_to_grid,
|
||||
gboolean snap_to_canvas,
|
||||
gboolean snap_to_vectors)
|
||||
gboolean snap_to_vectors,
|
||||
gboolean show_all)
|
||||
{
|
||||
gdouble mindist_x = G_MAXDOUBLE;
|
||||
gdouble mindist_y = G_MAXDOUBLE;
|
||||
@ -241,10 +242,15 @@ gimp_image_snap_point (GimpImage *image,
|
||||
if (! (snap_to_guides || snap_to_grid || snap_to_canvas || snap_to_vectors))
|
||||
return FALSE;
|
||||
|
||||
if (x < -epsilon_x || x >= (gimp_image_get_width (image) + epsilon_x) ||
|
||||
y < -epsilon_y || y >= (gimp_image_get_height (image) + epsilon_y))
|
||||
if (! show_all &&
|
||||
(x < -epsilon_x || x >= (gimp_image_get_width (image) + epsilon_x) ||
|
||||
y < -epsilon_y || y >= (gimp_image_get_height (image) + epsilon_y)))
|
||||
{
|
||||
return FALSE;
|
||||
/* Off-canvas grid is invisible unless "show all" option is
|
||||
* enabled. So let's not snap to the invisible grid.
|
||||
*/
|
||||
snap_to_grid = FALSE;
|
||||
snap_to_canvas = FALSE;
|
||||
}
|
||||
|
||||
if (snap_to_guides)
|
||||
|
@ -43,7 +43,8 @@ gboolean gimp_image_snap_point (GimpImage *image,
|
||||
gboolean snap_to_guides,
|
||||
gboolean snap_to_grid,
|
||||
gboolean snap_to_canvas,
|
||||
gboolean snap_to_vectors);
|
||||
gboolean snap_to_vectors,
|
||||
gboolean show_all);
|
||||
gboolean gimp_image_snap_rectangle (GimpImage *image,
|
||||
gdouble x1,
|
||||
gdouble y1,
|
||||
|
@ -47,7 +47,7 @@
|
||||
#define g_marshal_value_peek_variant(v) (v)->data[0].v_pointer
|
||||
#endif /* !G_ENABLE_DEBUG */
|
||||
|
||||
/* BOOLEAN: BOOLEAN (./gimpmarshal.list:25) */
|
||||
/* BOOLEAN: BOOLEAN (../../../app/core/gimpmarshal.list:25) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -96,7 +96,7 @@ gimp_marshal_BOOLEAN__BOOLEAN (GClosure *closure,
|
||||
g_value_set_boolean (return_value, v_return);
|
||||
}
|
||||
|
||||
/* BOOLEAN: DOUBLE (./gimpmarshal.list:26) */
|
||||
/* BOOLEAN: DOUBLE (../../../app/core/gimpmarshal.list:26) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -145,7 +145,7 @@ gimp_marshal_BOOLEAN__DOUBLE (GClosure *closure,
|
||||
g_value_set_boolean (return_value, v_return);
|
||||
}
|
||||
|
||||
/* BOOLEAN: ENUM, INT (./gimpmarshal.list:27) */
|
||||
/* BOOLEAN: ENUM, INT (../../../app/core/gimpmarshal.list:27) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -196,7 +196,7 @@ gimp_marshal_BOOLEAN__ENUM_INT (GClosure *closure,
|
||||
g_value_set_boolean (return_value, v_return);
|
||||
}
|
||||
|
||||
/* BOOLEAN: INT, UINT, ENUM (./gimpmarshal.list:28) */
|
||||
/* BOOLEAN: INT, UINT, ENUM (../../../app/core/gimpmarshal.list:28) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -249,7 +249,7 @@ gimp_marshal_BOOLEAN__INT_UINT_ENUM (GClosure *closure,
|
||||
g_value_set_boolean (return_value, v_return);
|
||||
}
|
||||
|
||||
/* BOOLEAN: OBJECT (./gimpmarshal.list:29) */
|
||||
/* BOOLEAN: OBJECT (../../../app/core/gimpmarshal.list:29) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -298,7 +298,7 @@ gimp_marshal_BOOLEAN__OBJECT (GClosure *closure,
|
||||
g_value_set_boolean (return_value, v_return);
|
||||
}
|
||||
|
||||
/* BOOLEAN: OBJECT, POINTER (./gimpmarshal.list:30) */
|
||||
/* BOOLEAN: OBJECT, POINTER (../../../app/core/gimpmarshal.list:30) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -349,7 +349,7 @@ gimp_marshal_BOOLEAN__OBJECT_POINTER (GClosure *closure,
|
||||
g_value_set_boolean (return_value, v_return);
|
||||
}
|
||||
|
||||
/* BOOLEAN: OBJECT, POINTER, STRING (./gimpmarshal.list:31) */
|
||||
/* BOOLEAN: OBJECT, POINTER, STRING (../../../app/core/gimpmarshal.list:31) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -402,7 +402,7 @@ gimp_marshal_BOOLEAN__OBJECT_POINTER_STRING (GClosure *closure,
|
||||
g_value_set_boolean (return_value, v_return);
|
||||
}
|
||||
|
||||
/* BOOLEAN: STRING (./gimpmarshal.list:32) */
|
||||
/* BOOLEAN: STRING (../../../app/core/gimpmarshal.list:32) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -451,7 +451,7 @@ gimp_marshal_BOOLEAN__STRING (GClosure *closure,
|
||||
g_value_set_boolean (return_value, v_return);
|
||||
}
|
||||
|
||||
/* BOOLEAN: STRING, FLAGS (./gimpmarshal.list:33) */
|
||||
/* BOOLEAN: STRING, FLAGS (../../../app/core/gimpmarshal.list:33) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -502,7 +502,7 @@ gimp_marshal_BOOLEAN__STRING_FLAGS (GClosure *closure,
|
||||
g_value_set_boolean (return_value, v_return);
|
||||
}
|
||||
|
||||
/* INT: DOUBLE (./gimpmarshal.list:35) */
|
||||
/* INT: DOUBLE (../../../app/core/gimpmarshal.list:35) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -551,10 +551,10 @@ gimp_marshal_INT__DOUBLE (GClosure *closure,
|
||||
g_value_set_int (return_value, v_return);
|
||||
}
|
||||
|
||||
/* VOID: BOOLEAN (./gimpmarshal.list:37) */
|
||||
/* VOID: BOOLEAN (../../../app/core/gimpmarshal.list:37) */
|
||||
#define gimp_marshal_VOID__BOOLEAN g_cclosure_marshal_VOID__BOOLEAN
|
||||
|
||||
/* VOID: BOOLEAN, INT, INT, INT, INT (./gimpmarshal.list:38) */
|
||||
/* VOID: BOOLEAN, INT, INT, INT, INT (../../../app/core/gimpmarshal.list:38) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -607,10 +607,10 @@ gimp_marshal_VOID__BOOLEAN_INT_INT_INT_INT (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: BOXED (./gimpmarshal.list:39) */
|
||||
/* VOID: BOXED (../../../app/core/gimpmarshal.list:39) */
|
||||
#define gimp_marshal_VOID__BOXED g_cclosure_marshal_VOID__BOXED
|
||||
|
||||
/* VOID: BOXED, ENUM (./gimpmarshal.list:40) */
|
||||
/* VOID: BOXED, ENUM (../../../app/core/gimpmarshal.list:40) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -657,10 +657,10 @@ gimp_marshal_VOID__BOXED_ENUM (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: DOUBLE (./gimpmarshal.list:41) */
|
||||
/* VOID: DOUBLE (../../../app/core/gimpmarshal.list:41) */
|
||||
#define gimp_marshal_VOID__DOUBLE g_cclosure_marshal_VOID__DOUBLE
|
||||
|
||||
/* VOID: DOUBLE, DOUBLE (./gimpmarshal.list:42) */
|
||||
/* VOID: DOUBLE, DOUBLE (../../../app/core/gimpmarshal.list:42) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -707,7 +707,7 @@ gimp_marshal_VOID__DOUBLE_DOUBLE (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: DOUBLE, DOUBLE, DOUBLE, DOUBLE (./gimpmarshal.list:43) */
|
||||
/* VOID: DOUBLE, DOUBLE, DOUBLE, DOUBLE (../../../app/core/gimpmarshal.list:43) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -758,10 +758,10 @@ gimp_marshal_VOID__DOUBLE_DOUBLE_DOUBLE_DOUBLE (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: ENUM (./gimpmarshal.list:44) */
|
||||
/* VOID: ENUM (../../../app/core/gimpmarshal.list:44) */
|
||||
#define gimp_marshal_VOID__ENUM g_cclosure_marshal_VOID__ENUM
|
||||
|
||||
/* VOID: ENUM, INT (./gimpmarshal.list:45) */
|
||||
/* VOID: ENUM, INT (../../../app/core/gimpmarshal.list:45) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -808,7 +808,7 @@ gimp_marshal_VOID__ENUM_INT (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: ENUM, INT, BOOLEAN (./gimpmarshal.list:46) */
|
||||
/* VOID: ENUM, INT, BOOLEAN (../../../app/core/gimpmarshal.list:46) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -857,7 +857,7 @@ gimp_marshal_VOID__ENUM_INT_BOOLEAN (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: ENUM, OBJECT (./gimpmarshal.list:47) */
|
||||
/* VOID: ENUM, OBJECT (../../../app/core/gimpmarshal.list:47) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -904,7 +904,7 @@ gimp_marshal_VOID__ENUM_OBJECT (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: ENUM, POINTER (./gimpmarshal.list:48) */
|
||||
/* VOID: ENUM, POINTER (../../../app/core/gimpmarshal.list:48) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -951,13 +951,13 @@ gimp_marshal_VOID__ENUM_POINTER (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: FLAGS (./gimpmarshal.list:49) */
|
||||
/* VOID: FLAGS (../../../app/core/gimpmarshal.list:49) */
|
||||
#define gimp_marshal_VOID__FLAGS g_cclosure_marshal_VOID__FLAGS
|
||||
|
||||
/* VOID: INT (./gimpmarshal.list:50) */
|
||||
/* VOID: INT (../../../app/core/gimpmarshal.list:50) */
|
||||
#define gimp_marshal_VOID__INT g_cclosure_marshal_VOID__INT
|
||||
|
||||
/* VOID: INT, BOOLEAN (./gimpmarshal.list:51) */
|
||||
/* VOID: INT, BOOLEAN (../../../app/core/gimpmarshal.list:51) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1004,7 +1004,7 @@ gimp_marshal_VOID__INT_BOOLEAN (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: INT, INT (./gimpmarshal.list:52) */
|
||||
/* VOID: INT, INT (../../../app/core/gimpmarshal.list:52) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1051,7 +1051,7 @@ gimp_marshal_VOID__INT_INT (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: INT, INT, INT, INT (./gimpmarshal.list:53) */
|
||||
/* VOID: INT, INT, INT, INT (../../../app/core/gimpmarshal.list:53) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1102,7 +1102,7 @@ gimp_marshal_VOID__INT_INT_INT_INT (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: INT, INT, BOOLEAN, BOOLEAN (./gimpmarshal.list:54) */
|
||||
/* VOID: INT, INT, BOOLEAN, BOOLEAN (../../../app/core/gimpmarshal.list:54) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1153,7 +1153,7 @@ gimp_marshal_VOID__INT_INT_BOOLEAN_BOOLEAN (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: INT, OBJECT (./gimpmarshal.list:55) */
|
||||
/* VOID: INT, OBJECT (../../../app/core/gimpmarshal.list:55) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1200,10 +1200,10 @@ gimp_marshal_VOID__INT_OBJECT (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: OBJECT (./gimpmarshal.list:56) */
|
||||
/* VOID: OBJECT (../../../app/core/gimpmarshal.list:56) */
|
||||
#define gimp_marshal_VOID__OBJECT g_cclosure_marshal_VOID__OBJECT
|
||||
|
||||
/* VOID: OBJECT, BOOLEAN (./gimpmarshal.list:57) */
|
||||
/* VOID: OBJECT, BOOLEAN (../../../app/core/gimpmarshal.list:57) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1250,7 +1250,7 @@ gimp_marshal_VOID__OBJECT_BOOLEAN (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: OBJECT, INT (./gimpmarshal.list:58) */
|
||||
/* VOID: OBJECT, INT (../../../app/core/gimpmarshal.list:58) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1297,7 +1297,7 @@ gimp_marshal_VOID__OBJECT_INT (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: OBJECT, OBJECT (./gimpmarshal.list:59) */
|
||||
/* VOID: OBJECT, OBJECT (../../../app/core/gimpmarshal.list:59) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1344,7 +1344,7 @@ gimp_marshal_VOID__OBJECT_OBJECT (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: OBJECT, POINTER (./gimpmarshal.list:60) */
|
||||
/* VOID: OBJECT, POINTER (../../../app/core/gimpmarshal.list:60) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1391,7 +1391,7 @@ gimp_marshal_VOID__OBJECT_POINTER (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: OBJECT, STRING, STRING (./gimpmarshal.list:61) */
|
||||
/* VOID: OBJECT, STRING, STRING (../../../app/core/gimpmarshal.list:61) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1440,10 +1440,10 @@ gimp_marshal_VOID__OBJECT_STRING_STRING (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: POINTER (./gimpmarshal.list:62) */
|
||||
/* VOID: POINTER (../../../app/core/gimpmarshal.list:62) */
|
||||
#define gimp_marshal_VOID__POINTER g_cclosure_marshal_VOID__POINTER
|
||||
|
||||
/* VOID: POINTER, BOXED (./gimpmarshal.list:63) */
|
||||
/* VOID: POINTER, BOXED (../../../app/core/gimpmarshal.list:63) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1490,7 +1490,7 @@ gimp_marshal_VOID__POINTER_BOXED (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: POINTER, ENUM (./gimpmarshal.list:64) */
|
||||
/* VOID: POINTER, ENUM (../../../app/core/gimpmarshal.list:64) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1537,7 +1537,7 @@ gimp_marshal_VOID__POINTER_ENUM (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: POINTER, FLAGS, BOOLEAN (./gimpmarshal.list:65) */
|
||||
/* VOID: POINTER, FLAGS, BOOLEAN (../../../app/core/gimpmarshal.list:65) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1586,7 +1586,7 @@ gimp_marshal_VOID__POINTER_FLAGS_BOOLEAN (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: POINTER, OBJECT, ENUM, POINTER, POINTER, BOXED (./gimpmarshal.list:66) */
|
||||
/* VOID: POINTER, OBJECT, ENUM, POINTER, POINTER, BOXED (../../../app/core/gimpmarshal.list:66) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1641,7 +1641,7 @@ gimp_marshal_VOID__POINTER_OBJECT_ENUM_POINTER_POINTER_BOXED (GClosure *clos
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: POINTER, UINT, FLAGS (./gimpmarshal.list:67) */
|
||||
/* VOID: POINTER, UINT, FLAGS (../../../app/core/gimpmarshal.list:67) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1690,10 +1690,10 @@ gimp_marshal_VOID__POINTER_UINT_FLAGS (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: STRING (./gimpmarshal.list:68) */
|
||||
/* VOID: STRING (../../../app/core/gimpmarshal.list:68) */
|
||||
#define gimp_marshal_VOID__STRING g_cclosure_marshal_VOID__STRING
|
||||
|
||||
/* VOID: STRING, BOOLEAN, UINT, FLAGS (./gimpmarshal.list:69) */
|
||||
/* VOID: STRING, BOOLEAN, UINT, FLAGS (../../../app/core/gimpmarshal.list:69) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1744,7 +1744,7 @@ gimp_marshal_VOID__STRING_BOOLEAN_UINT_FLAGS (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: STRING, DOUBLE, STRING, DOUBLE, STRING (./gimpmarshal.list:70) */
|
||||
/* VOID: STRING, DOUBLE, STRING, DOUBLE, STRING (../../../app/core/gimpmarshal.list:70) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1797,7 +1797,7 @@ gimp_marshal_VOID__STRING_DOUBLE_STRING_DOUBLE_STRING (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: STRING, FLAGS (./gimpmarshal.list:71) */
|
||||
/* VOID: STRING, FLAGS (../../../app/core/gimpmarshal.list:71) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1844,7 +1844,7 @@ gimp_marshal_VOID__STRING_FLAGS (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: STRING, STRING, STRING (./gimpmarshal.list:72) */
|
||||
/* VOID: STRING, STRING, STRING (../../../app/core/gimpmarshal.list:72) */
|
||||
/* Prototype for -Wmissing-prototypes */
|
||||
G_BEGIN_DECLS
|
||||
extern
|
||||
@ -1893,9 +1893,9 @@ gimp_marshal_VOID__STRING_STRING_STRING (GClosure *closure,
|
||||
data2);
|
||||
}
|
||||
|
||||
/* VOID: VARIANT (./gimpmarshal.list:73) */
|
||||
/* VOID: VARIANT (../../../app/core/gimpmarshal.list:73) */
|
||||
#define gimp_marshal_VOID__VARIANT g_cclosure_marshal_VOID__VARIANT
|
||||
|
||||
/* VOID: VOID (./gimpmarshal.list:74) */
|
||||
/* VOID: VOID (../../../app/core/gimpmarshal.list:74) */
|
||||
#define gimp_marshal_VOID__VOID g_cclosure_marshal_VOID__VOID
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
/* BOOLEAN: BOOLEAN (./gimpmarshal.list:25) */
|
||||
/* BOOLEAN: BOOLEAN (../../../app/core/gimpmarshal.list:25) */
|
||||
extern
|
||||
void gimp_marshal_BOOLEAN__BOOLEAN (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -15,7 +15,7 @@ void gimp_marshal_BOOLEAN__BOOLEAN (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* BOOLEAN: DOUBLE (./gimpmarshal.list:26) */
|
||||
/* BOOLEAN: DOUBLE (../../../app/core/gimpmarshal.list:26) */
|
||||
extern
|
||||
void gimp_marshal_BOOLEAN__DOUBLE (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -24,7 +24,7 @@ void gimp_marshal_BOOLEAN__DOUBLE (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* BOOLEAN: ENUM, INT (./gimpmarshal.list:27) */
|
||||
/* BOOLEAN: ENUM, INT (../../../app/core/gimpmarshal.list:27) */
|
||||
extern
|
||||
void gimp_marshal_BOOLEAN__ENUM_INT (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -33,7 +33,7 @@ void gimp_marshal_BOOLEAN__ENUM_INT (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* BOOLEAN: INT, UINT, ENUM (./gimpmarshal.list:28) */
|
||||
/* BOOLEAN: INT, UINT, ENUM (../../../app/core/gimpmarshal.list:28) */
|
||||
extern
|
||||
void gimp_marshal_BOOLEAN__INT_UINT_ENUM (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -42,7 +42,7 @@ void gimp_marshal_BOOLEAN__INT_UINT_ENUM (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* BOOLEAN: OBJECT (./gimpmarshal.list:29) */
|
||||
/* BOOLEAN: OBJECT (../../../app/core/gimpmarshal.list:29) */
|
||||
extern
|
||||
void gimp_marshal_BOOLEAN__OBJECT (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -51,7 +51,7 @@ void gimp_marshal_BOOLEAN__OBJECT (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* BOOLEAN: OBJECT, POINTER (./gimpmarshal.list:30) */
|
||||
/* BOOLEAN: OBJECT, POINTER (../../../app/core/gimpmarshal.list:30) */
|
||||
extern
|
||||
void gimp_marshal_BOOLEAN__OBJECT_POINTER (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -60,7 +60,7 @@ void gimp_marshal_BOOLEAN__OBJECT_POINTER (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* BOOLEAN: OBJECT, POINTER, STRING (./gimpmarshal.list:31) */
|
||||
/* BOOLEAN: OBJECT, POINTER, STRING (../../../app/core/gimpmarshal.list:31) */
|
||||
extern
|
||||
void gimp_marshal_BOOLEAN__OBJECT_POINTER_STRING (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -69,7 +69,7 @@ void gimp_marshal_BOOLEAN__OBJECT_POINTER_STRING (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* BOOLEAN: STRING (./gimpmarshal.list:32) */
|
||||
/* BOOLEAN: STRING (../../../app/core/gimpmarshal.list:32) */
|
||||
extern
|
||||
void gimp_marshal_BOOLEAN__STRING (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -78,7 +78,7 @@ void gimp_marshal_BOOLEAN__STRING (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* BOOLEAN: STRING, FLAGS (./gimpmarshal.list:33) */
|
||||
/* BOOLEAN: STRING, FLAGS (../../../app/core/gimpmarshal.list:33) */
|
||||
extern
|
||||
void gimp_marshal_BOOLEAN__STRING_FLAGS (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -87,7 +87,7 @@ void gimp_marshal_BOOLEAN__STRING_FLAGS (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* INT: DOUBLE (./gimpmarshal.list:35) */
|
||||
/* INT: DOUBLE (../../../app/core/gimpmarshal.list:35) */
|
||||
extern
|
||||
void gimp_marshal_INT__DOUBLE (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -96,10 +96,10 @@ void gimp_marshal_INT__DOUBLE (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: BOOLEAN (./gimpmarshal.list:37) */
|
||||
/* VOID: BOOLEAN (../../../app/core/gimpmarshal.list:37) */
|
||||
#define gimp_marshal_VOID__BOOLEAN g_cclosure_marshal_VOID__BOOLEAN
|
||||
|
||||
/* VOID: BOOLEAN, INT, INT, INT, INT (./gimpmarshal.list:38) */
|
||||
/* VOID: BOOLEAN, INT, INT, INT, INT (../../../app/core/gimpmarshal.list:38) */
|
||||
extern
|
||||
void gimp_marshal_VOID__BOOLEAN_INT_INT_INT_INT (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -108,10 +108,10 @@ void gimp_marshal_VOID__BOOLEAN_INT_INT_INT_INT (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: BOXED (./gimpmarshal.list:39) */
|
||||
/* VOID: BOXED (../../../app/core/gimpmarshal.list:39) */
|
||||
#define gimp_marshal_VOID__BOXED g_cclosure_marshal_VOID__BOXED
|
||||
|
||||
/* VOID: BOXED, ENUM (./gimpmarshal.list:40) */
|
||||
/* VOID: BOXED, ENUM (../../../app/core/gimpmarshal.list:40) */
|
||||
extern
|
||||
void gimp_marshal_VOID__BOXED_ENUM (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -120,10 +120,10 @@ void gimp_marshal_VOID__BOXED_ENUM (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: DOUBLE (./gimpmarshal.list:41) */
|
||||
/* VOID: DOUBLE (../../../app/core/gimpmarshal.list:41) */
|
||||
#define gimp_marshal_VOID__DOUBLE g_cclosure_marshal_VOID__DOUBLE
|
||||
|
||||
/* VOID: DOUBLE, DOUBLE (./gimpmarshal.list:42) */
|
||||
/* VOID: DOUBLE, DOUBLE (../../../app/core/gimpmarshal.list:42) */
|
||||
extern
|
||||
void gimp_marshal_VOID__DOUBLE_DOUBLE (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -132,7 +132,7 @@ void gimp_marshal_VOID__DOUBLE_DOUBLE (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: DOUBLE, DOUBLE, DOUBLE, DOUBLE (./gimpmarshal.list:43) */
|
||||
/* VOID: DOUBLE, DOUBLE, DOUBLE, DOUBLE (../../../app/core/gimpmarshal.list:43) */
|
||||
extern
|
||||
void gimp_marshal_VOID__DOUBLE_DOUBLE_DOUBLE_DOUBLE (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -141,10 +141,10 @@ void gimp_marshal_VOID__DOUBLE_DOUBLE_DOUBLE_DOUBLE (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: ENUM (./gimpmarshal.list:44) */
|
||||
/* VOID: ENUM (../../../app/core/gimpmarshal.list:44) */
|
||||
#define gimp_marshal_VOID__ENUM g_cclosure_marshal_VOID__ENUM
|
||||
|
||||
/* VOID: ENUM, INT (./gimpmarshal.list:45) */
|
||||
/* VOID: ENUM, INT (../../../app/core/gimpmarshal.list:45) */
|
||||
extern
|
||||
void gimp_marshal_VOID__ENUM_INT (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -153,7 +153,7 @@ void gimp_marshal_VOID__ENUM_INT (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: ENUM, INT, BOOLEAN (./gimpmarshal.list:46) */
|
||||
/* VOID: ENUM, INT, BOOLEAN (../../../app/core/gimpmarshal.list:46) */
|
||||
extern
|
||||
void gimp_marshal_VOID__ENUM_INT_BOOLEAN (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -162,7 +162,7 @@ void gimp_marshal_VOID__ENUM_INT_BOOLEAN (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: ENUM, OBJECT (./gimpmarshal.list:47) */
|
||||
/* VOID: ENUM, OBJECT (../../../app/core/gimpmarshal.list:47) */
|
||||
extern
|
||||
void gimp_marshal_VOID__ENUM_OBJECT (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -171,7 +171,7 @@ void gimp_marshal_VOID__ENUM_OBJECT (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: ENUM, POINTER (./gimpmarshal.list:48) */
|
||||
/* VOID: ENUM, POINTER (../../../app/core/gimpmarshal.list:48) */
|
||||
extern
|
||||
void gimp_marshal_VOID__ENUM_POINTER (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -180,13 +180,13 @@ void gimp_marshal_VOID__ENUM_POINTER (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: FLAGS (./gimpmarshal.list:49) */
|
||||
/* VOID: FLAGS (../../../app/core/gimpmarshal.list:49) */
|
||||
#define gimp_marshal_VOID__FLAGS g_cclosure_marshal_VOID__FLAGS
|
||||
|
||||
/* VOID: INT (./gimpmarshal.list:50) */
|
||||
/* VOID: INT (../../../app/core/gimpmarshal.list:50) */
|
||||
#define gimp_marshal_VOID__INT g_cclosure_marshal_VOID__INT
|
||||
|
||||
/* VOID: INT, BOOLEAN (./gimpmarshal.list:51) */
|
||||
/* VOID: INT, BOOLEAN (../../../app/core/gimpmarshal.list:51) */
|
||||
extern
|
||||
void gimp_marshal_VOID__INT_BOOLEAN (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -195,7 +195,7 @@ void gimp_marshal_VOID__INT_BOOLEAN (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: INT, INT (./gimpmarshal.list:52) */
|
||||
/* VOID: INT, INT (../../../app/core/gimpmarshal.list:52) */
|
||||
extern
|
||||
void gimp_marshal_VOID__INT_INT (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -204,7 +204,7 @@ void gimp_marshal_VOID__INT_INT (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: INT, INT, INT, INT (./gimpmarshal.list:53) */
|
||||
/* VOID: INT, INT, INT, INT (../../../app/core/gimpmarshal.list:53) */
|
||||
extern
|
||||
void gimp_marshal_VOID__INT_INT_INT_INT (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -213,7 +213,7 @@ void gimp_marshal_VOID__INT_INT_INT_INT (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: INT, INT, BOOLEAN, BOOLEAN (./gimpmarshal.list:54) */
|
||||
/* VOID: INT, INT, BOOLEAN, BOOLEAN (../../../app/core/gimpmarshal.list:54) */
|
||||
extern
|
||||
void gimp_marshal_VOID__INT_INT_BOOLEAN_BOOLEAN (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -222,7 +222,7 @@ void gimp_marshal_VOID__INT_INT_BOOLEAN_BOOLEAN (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: INT, OBJECT (./gimpmarshal.list:55) */
|
||||
/* VOID: INT, OBJECT (../../../app/core/gimpmarshal.list:55) */
|
||||
extern
|
||||
void gimp_marshal_VOID__INT_OBJECT (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -231,10 +231,10 @@ void gimp_marshal_VOID__INT_OBJECT (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: OBJECT (./gimpmarshal.list:56) */
|
||||
/* VOID: OBJECT (../../../app/core/gimpmarshal.list:56) */
|
||||
#define gimp_marshal_VOID__OBJECT g_cclosure_marshal_VOID__OBJECT
|
||||
|
||||
/* VOID: OBJECT, BOOLEAN (./gimpmarshal.list:57) */
|
||||
/* VOID: OBJECT, BOOLEAN (../../../app/core/gimpmarshal.list:57) */
|
||||
extern
|
||||
void gimp_marshal_VOID__OBJECT_BOOLEAN (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -243,7 +243,7 @@ void gimp_marshal_VOID__OBJECT_BOOLEAN (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: OBJECT, INT (./gimpmarshal.list:58) */
|
||||
/* VOID: OBJECT, INT (../../../app/core/gimpmarshal.list:58) */
|
||||
extern
|
||||
void gimp_marshal_VOID__OBJECT_INT (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -252,7 +252,7 @@ void gimp_marshal_VOID__OBJECT_INT (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: OBJECT, OBJECT (./gimpmarshal.list:59) */
|
||||
/* VOID: OBJECT, OBJECT (../../../app/core/gimpmarshal.list:59) */
|
||||
extern
|
||||
void gimp_marshal_VOID__OBJECT_OBJECT (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -261,7 +261,7 @@ void gimp_marshal_VOID__OBJECT_OBJECT (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: OBJECT, POINTER (./gimpmarshal.list:60) */
|
||||
/* VOID: OBJECT, POINTER (../../../app/core/gimpmarshal.list:60) */
|
||||
extern
|
||||
void gimp_marshal_VOID__OBJECT_POINTER (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -270,7 +270,7 @@ void gimp_marshal_VOID__OBJECT_POINTER (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: OBJECT, STRING, STRING (./gimpmarshal.list:61) */
|
||||
/* VOID: OBJECT, STRING, STRING (../../../app/core/gimpmarshal.list:61) */
|
||||
extern
|
||||
void gimp_marshal_VOID__OBJECT_STRING_STRING (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -279,10 +279,10 @@ void gimp_marshal_VOID__OBJECT_STRING_STRING (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: POINTER (./gimpmarshal.list:62) */
|
||||
/* VOID: POINTER (../../../app/core/gimpmarshal.list:62) */
|
||||
#define gimp_marshal_VOID__POINTER g_cclosure_marshal_VOID__POINTER
|
||||
|
||||
/* VOID: POINTER, BOXED (./gimpmarshal.list:63) */
|
||||
/* VOID: POINTER, BOXED (../../../app/core/gimpmarshal.list:63) */
|
||||
extern
|
||||
void gimp_marshal_VOID__POINTER_BOXED (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -291,7 +291,7 @@ void gimp_marshal_VOID__POINTER_BOXED (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: POINTER, ENUM (./gimpmarshal.list:64) */
|
||||
/* VOID: POINTER, ENUM (../../../app/core/gimpmarshal.list:64) */
|
||||
extern
|
||||
void gimp_marshal_VOID__POINTER_ENUM (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -300,7 +300,7 @@ void gimp_marshal_VOID__POINTER_ENUM (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: POINTER, FLAGS, BOOLEAN (./gimpmarshal.list:65) */
|
||||
/* VOID: POINTER, FLAGS, BOOLEAN (../../../app/core/gimpmarshal.list:65) */
|
||||
extern
|
||||
void gimp_marshal_VOID__POINTER_FLAGS_BOOLEAN (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -309,7 +309,7 @@ void gimp_marshal_VOID__POINTER_FLAGS_BOOLEAN (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: POINTER, OBJECT, ENUM, POINTER, POINTER, BOXED (./gimpmarshal.list:66) */
|
||||
/* VOID: POINTER, OBJECT, ENUM, POINTER, POINTER, BOXED (../../../app/core/gimpmarshal.list:66) */
|
||||
extern
|
||||
void gimp_marshal_VOID__POINTER_OBJECT_ENUM_POINTER_POINTER_BOXED (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -318,7 +318,7 @@ void gimp_marshal_VOID__POINTER_OBJECT_ENUM_POINTER_POINTER_BOXED (GClosure
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: POINTER, UINT, FLAGS (./gimpmarshal.list:67) */
|
||||
/* VOID: POINTER, UINT, FLAGS (../../../app/core/gimpmarshal.list:67) */
|
||||
extern
|
||||
void gimp_marshal_VOID__POINTER_UINT_FLAGS (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -327,10 +327,10 @@ void gimp_marshal_VOID__POINTER_UINT_FLAGS (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: STRING (./gimpmarshal.list:68) */
|
||||
/* VOID: STRING (../../../app/core/gimpmarshal.list:68) */
|
||||
#define gimp_marshal_VOID__STRING g_cclosure_marshal_VOID__STRING
|
||||
|
||||
/* VOID: STRING, BOOLEAN, UINT, FLAGS (./gimpmarshal.list:69) */
|
||||
/* VOID: STRING, BOOLEAN, UINT, FLAGS (../../../app/core/gimpmarshal.list:69) */
|
||||
extern
|
||||
void gimp_marshal_VOID__STRING_BOOLEAN_UINT_FLAGS (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -339,7 +339,7 @@ void gimp_marshal_VOID__STRING_BOOLEAN_UINT_FLAGS (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: STRING, DOUBLE, STRING, DOUBLE, STRING (./gimpmarshal.list:70) */
|
||||
/* VOID: STRING, DOUBLE, STRING, DOUBLE, STRING (../../../app/core/gimpmarshal.list:70) */
|
||||
extern
|
||||
void gimp_marshal_VOID__STRING_DOUBLE_STRING_DOUBLE_STRING (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -348,7 +348,7 @@ void gimp_marshal_VOID__STRING_DOUBLE_STRING_DOUBLE_STRING (GClosure *closur
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: STRING, FLAGS (./gimpmarshal.list:71) */
|
||||
/* VOID: STRING, FLAGS (../../../app/core/gimpmarshal.list:71) */
|
||||
extern
|
||||
void gimp_marshal_VOID__STRING_FLAGS (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -357,7 +357,7 @@ void gimp_marshal_VOID__STRING_FLAGS (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: STRING, STRING, STRING (./gimpmarshal.list:72) */
|
||||
/* VOID: STRING, STRING, STRING (../../../app/core/gimpmarshal.list:72) */
|
||||
extern
|
||||
void gimp_marshal_VOID__STRING_STRING_STRING (GClosure *closure,
|
||||
GValue *return_value,
|
||||
@ -366,10 +366,10 @@ void gimp_marshal_VOID__STRING_STRING_STRING (GClosure *closure,
|
||||
gpointer invocation_hint,
|
||||
gpointer marshal_data);
|
||||
|
||||
/* VOID: VARIANT (./gimpmarshal.list:73) */
|
||||
/* VOID: VARIANT (../../../app/core/gimpmarshal.list:73) */
|
||||
#define gimp_marshal_VOID__VARIANT g_cclosure_marshal_VOID__VARIANT
|
||||
|
||||
/* VOID: VOID (./gimpmarshal.list:74) */
|
||||
/* VOID: VOID (../../../app/core/gimpmarshal.list:74) */
|
||||
#define gimp_marshal_VOID__VOID g_cclosure_marshal_VOID__VOID
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user