// 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(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(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 } }