insertbin: mark symbols explicitly for export with GST_EXPORT

This commit is contained in:
Tim-Philipp Müller 2017-07-18 00:23:09 +01:00
parent d9354b83bb
commit 6f47205321

View file

@ -84,20 +84,31 @@ struct _GstInsertBinClass
GstBinClass parent_class;
};
GST_EXPORT
GType gst_insert_bin_get_type (void);
GST_EXPORT
GstElement *gst_insert_bin_new (const gchar * name);
GST_EXPORT
void gst_insert_bin_prepend (GstInsertBin * self, GstElement * element,
GstInsertBinCallback callback, gpointer user_data);
GST_EXPORT
void gst_insert_bin_append (GstInsertBin * self, GstElement * element,
GstInsertBinCallback callback, gpointer user_data);
GST_EXPORT
void gst_insert_bin_insert_before (GstInsertBin * self,
GstElement * element, GstElement * sibling,
GstInsertBinCallback callback, gpointer user_data);
GST_EXPORT
void gst_insert_bin_insert_after (GstInsertBin * self,
GstElement * element, GstElement * sibling,
GstInsertBinCallback callback, gpointer user_data);
GST_EXPORT
void gst_insert_bin_remove (GstInsertBin * self, GstElement * element,
GstInsertBinCallback callback, gpointer user_data);