1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gtk {
using System;
using System.Runtime.InteropServices;
#region Autogenerated code
public partial class Main {
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_main_do_event(IntPtr evnt);
public static void DoEvent(Gdk.Event evnt) {
gtk_main_do_event(evnt == null ? IntPtr.Zero : evnt.Handle);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_main_iteration();
public static bool Iteration() {
bool raw_ret = gtk_main_iteration();
bool ret = raw_ret;
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_main_iteration_do(bool blocking);
public static bool IterationDo(bool blocking) {
bool raw_ret = gtk_main_iteration_do(blocking);
bool ret = raw_ret;
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern uint gtk_main_level();
public static uint Level() {
uint raw_ret = gtk_main_level();
uint ret = raw_ret;
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_main_quit();
public static void Quit() {
gtk_main_quit();
}
#endregion
}
}
|