no more submodule
This commit is contained in:
34
GtkSharp/Source/Libs/GioSharp/Generated/GLib/GioGlobal.cs
Normal file
34
GtkSharp/Source/Libs/GioSharp/Generated/GLib/GioGlobal.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
// This file was generated by the Gtk# code generator.
|
||||
// Any changes made will be lost if regenerated.
|
||||
|
||||
namespace GLib {
|
||||
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
#region Autogenerated code
|
||||
public partial class GioGlobal {
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate int d_g_tls_error_quark();
|
||||
static d_g_tls_error_quark g_tls_error_quark = FuncLoader.LoadFunction<d_g_tls_error_quark>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_tls_error_quark"));
|
||||
|
||||
public static int TlsErrorQuark() {
|
||||
int raw_ret = g_tls_error_quark();
|
||||
int ret = raw_ret;
|
||||
return ret;
|
||||
}
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate int d_g_io_error_quark();
|
||||
static d_g_io_error_quark g_io_error_quark = FuncLoader.LoadFunction<d_g_io_error_quark>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_io_error_quark"));
|
||||
|
||||
public static int ErrorQuark() {
|
||||
int raw_ret = g_io_error_quark();
|
||||
int ret = raw_ret;
|
||||
return ret;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user