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

35 lines
1013 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;
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
}
}