Files
KioskApp/GtkSharp/Source/Libs/GioSharp/Generated/GLib/RunHandler.cs
2024-09-15 22:40:48 +02:00

25 lines
441 B
C#

// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace GLib {
using System;
public delegate void RunHandler(object o, RunArgs args);
public class RunArgs : GLib.SignalArgs {
public GLib.SocketConnection Connection{
get {
return (GLib.SocketConnection) Args [0];
}
}
public GLib.Object SourceObject{
get {
return (GLib.Object) Args [1];
}
}
}
}