diff options
author | Matej Knopp <matej.knopp@gmail.com> | 2011-12-16 02:20:27 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-12-27 23:26:07 +0000 |
commit | efdd0a2a82dbb0d876ba3598cb71b96d72520074 (patch) | |
tree | 1b6af7be3d6ec3401726af8215c01670f40d057d /gst/gstcaps.h | |
parent | 855212cd2f890652791b18a43fcfe61779b8c2b6 (diff) |
win32: fix exported variables for VS 2010
https://bugzilla.gnome.org/show_bug.cgi?id=666219
Diffstat (limited to 'gst/gstcaps.h')
-rw-r--r-- | gst/gstcaps.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/gstcaps.h b/gst/gstcaps.h index a08be0796..320471662 100644 --- a/gst/gstcaps.h +++ b/gst/gstcaps.h @@ -27,7 +27,7 @@ G_BEGIN_DECLS -extern GType _gst_caps_type; +GST_EXPORT GType _gst_caps_type; #define GST_TYPE_CAPS (_gst_caps_type) #define GST_IS_CAPS(obj) (GST_IS_MINI_OBJECT_TYPE((obj), GST_TYPE_CAPS)) @@ -138,8 +138,8 @@ typedef enum { typedef struct _GstCaps GstCaps; typedef struct _GstStaticCaps GstStaticCaps; -extern GstCaps * _gst_caps_any; -extern GstCaps * _gst_caps_none; +GST_EXPORT GstCaps * _gst_caps_any; +GST_EXPORT GstCaps * _gst_caps_none; /** * GST_CAPS_FLAGS: * @caps: a #GstCaps. |