mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-11 10:56:38 +00:00
11 lines
241 B
C
11 lines
241 B
C
#include <gst/gstbin.h>
|
|
#include <gst/gstpipeline.h>
|
|
#include <gst/gstsegment.h>
|
|
|
|
guint gstsharp_gst_bin_get_children_offset (void);
|
|
|
|
guint
|
|
gstsharp_gst_bin_get_children_offset (void)
|
|
{
|
|
return (guint) G_STRUCT_OFFSET (GstBin, children);
|
|
}
|