gstreamer/ges/generated/GES/NotifyMetaHandler.cs

25 lines
415 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 GES {
using System;
public delegate void NotifyMetaHandler(object o, NotifyMetaArgs args);
public class NotifyMetaArgs : GLib.SignalArgs {
2020-06-18 01:14:24 +00:00
public string Key{
2018-01-29 18:56:49 +00:00
get {
return (string) Args [0];
}
}
2020-06-18 01:14:24 +00:00
public GLib.Value Value{
2018-01-29 18:56:49 +00:00
get {
return (GLib.Value) Args [1];
}
}
}
}