26 lines
701 B
C#
26 lines
701 B
C#
// 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
|
|
}
|