gstreamer/subprojects/gstreamer-sharp/ges/generated/GES/ErrorLoadingAssetHandler.cs
Andoni Morales Alastruey 4be602a137 csharp: update c# bindings
Update to C# bindings to use a more recent version of GtkSharp
and regenerate the bindings with that version

Fix #1718
2023-12-07 17:34:34 +01:00

30 lines
517 B
C#

// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace GES {
using System;
public delegate void ErrorLoadingAssetHandler(object o, ErrorLoadingAssetArgs args);
public class ErrorLoadingAssetArgs : GLib.SignalArgs {
public IntPtr Error{
get {
return (IntPtr) Args [0];
}
}
public string Id{
get {
return (string) Args [1];
}
}
public GLib.GType ExtractableType{
get {
return (GLib.GType) Args [2];
}
}
}
}