gstreamer/sources/generated/Gst_IChildProxy.cs

32 lines
880 B
C#
Raw Normal View History

2018-01-29 18:56:49 +00:00
// 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
}