mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
insertbin: mark symbols explicitly for export with GST_EXPORT
This commit is contained in:
parent
d9354b83bb
commit
6f47205321
1 changed files with 11 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue