Files
KioskApp/GtkSharp/Source/Libs/GioSharp/Generated/GLib/IActionMap.cs

26 lines
701 B
C#
Raw Normal View History

2024-09-15 22:40:48 +02:00
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace GLib {
using System;
#region Autogenerated code
public partial interface IActionMap : GLib.IWrapper {
void AddAction(GLib.IAction action);
void AddActionEntries(GLib.ActionEntry entries, int n_entries, IntPtr user_data);
GLib.IAction LookupAction(string action_name);
void RemoveAction(string action_name);
}
[GLib.GInterface (typeof (ActionMapAdapter))]
public partial interface IActionMapImplementor : GLib.IWrapper {
GLib.IAction LookupAction (string action_name);
void AddAction (GLib.IAction action);
void RemoveAction (string action_name);
}
#endregion
}