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

25 lines
399 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 ChangeEventHandler(object o, ChangeEventArgs args);
public class ChangeEventArgs : GLib.SignalArgs {
public int Keys{
set {
Args[0] = (int)value;
}
}
public int NKeys{
get {
return (int) Args [1];
}
}
}
}