mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 04:11:31 +00:00
2d00f898fb
Making it cleaner and simpler to navigate and removing previous ugly and now useless hack where we were renaming files ourself to make meson happy.
31 lines
880 B
C#
31 lines
880 B
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace Gst {
|
|
|
|
using System;
|
|
|
|
#region Autogenerated code
|
|
public partial interface IChildProxy : GLib.IWrapper {
|
|
|
|
event Gst.ChildRemovedEventHandler ChildRemovedEvent;
|
|
event Gst.ChildAddedEventHandler ChildAddedEvent;
|
|
void ChildAdded(GLib.Object child, string name);
|
|
void ChildRemoved(GLib.Object child, string name);
|
|
GLib.Object GetChildByIndex(uint index);
|
|
GLib.Object GetChildByName(string name);
|
|
uint ChildrenCount {
|
|
get;
|
|
}
|
|
bool Lookup(string name, out GLib.Object target, out IntPtr pspec);
|
|
}
|
|
|
|
[GLib.GInterface (typeof (ChildProxyAdapter))]
|
|
public partial interface IChildProxyImplementor : GLib.IWrapper {
|
|
|
|
GLib.Object GetChildByName (string name);
|
|
GLib.Object GetChildByIndex (uint index);
|
|
uint ChildrenCount { get; }
|
|
}
|
|
#endregion
|
|
}
|