summaryrefslogtreecommitdiff
path: root/gladeui/glade-builtins.h
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2020-06-03 19:08:17 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2020-06-08 17:37:06 +0800
commit65ca01bba52c71ad7b0aefa2e1aad9db49b30bcf (patch)
treea06111b807fcef309c8154380ce4def13ef5ad2e /gladeui/glade-builtins.h
parent711567dcca87d426e27df7a88c76bdd0276b2c5c (diff)
downloadglade-65ca01bba52c71ad7b0aefa2e1aad9db49b30bcf.tar.gz
gladeui: Mark public APIs with GLADEUI_EXPORTS
This prepares for exporting via compiler directives, where needed, such as on Visual Studio.
Diffstat (limited to 'gladeui/glade-builtins.h')
-rw-r--r--gladeui/glade-builtins.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/gladeui/glade-builtins.h b/gladeui/glade-builtins.h
index 5837900d..1f6aee64 100644
--- a/gladeui/glade-builtins.h
+++ b/gladeui/glade-builtins.h
@@ -27,33 +27,52 @@ typedef struct _GladeParamSpecObjects GladeParamSpecObjects;
(G_TYPE_CHECK_INSTANCE_CAST ((pspec), \
GLADE_TYPE_PARAM_OBJECTS, GladeParamSpecObjects))
+GLADEUI_EXPORTS
GType glade_standard_stock_get_type (void) G_GNUC_CONST;
+GLADEUI_EXPORTS
GType glade_standard_stock_image_get_type (void) G_GNUC_CONST;
+GLADEUI_EXPORTS
GType glade_glist_get_type (void) G_GNUC_CONST;
+GLADEUI_EXPORTS
GType glade_param_objects_get_type (void) G_GNUC_CONST;
+GLADEUI_EXPORTS
GParamSpec *glade_param_spec_objects (const gchar *name,
const gchar *nick,
const gchar *blurb,
GType accepted_type,
GParamFlags flags);
+GLADEUI_EXPORTS
void glade_param_spec_objects_set_type (GladeParamSpecObjects *pspec,
GType type);
+GLADEUI_EXPORTS
GType glade_param_spec_objects_get_type (GladeParamSpecObjects *pspec);
+GLADEUI_EXPORTS
GParamSpec *glade_standard_pixbuf_spec (void);
+GLADEUI_EXPORTS
GParamSpec *glade_standard_gdkcolor_spec (void);
+GLADEUI_EXPORTS
GParamSpec *glade_standard_objects_spec (void);
+GLADEUI_EXPORTS
GParamSpec *glade_standard_stock_spec (void);
+GLADEUI_EXPORTS
GParamSpec *glade_standard_stock_image_spec (void);
+GLADEUI_EXPORTS
GParamSpec *glade_standard_int_spec (void);
+GLADEUI_EXPORTS
GParamSpec *glade_standard_uint_spec (void);
+GLADEUI_EXPORTS
GParamSpec *glade_standard_string_spec (void);
+GLADEUI_EXPORTS
GParamSpec *glade_standard_strv_spec (void);
+GLADEUI_EXPORTS
GParamSpec *glade_standard_float_spec (void);
+GLADEUI_EXPORTS
GParamSpec *glade_standard_boolean_spec (void);
+GLADEUI_EXPORTS
void glade_standard_stock_append_prefix (const gchar *prefix);
G_END_DECLS