mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-11 19:06:33 +00:00
11 lines
239 B
C
11 lines
239 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);
|
||
|
}
|