// This file was generated by the Gtk# code generator. // Any changes made will be lost if regenerated. namespace GLib { using System; using System.Collections; using System.Collections.Generic; using System.Runtime.InteropServices; #region Autogenerated code public partial class IOExtension : GLib.Opaque { [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate IntPtr d_g_io_extension_get_name(IntPtr raw); static d_g_io_extension_get_name g_io_extension_get_name = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_io_extension_get_name")); public string Name { get { IntPtr raw_ret = g_io_extension_get_name(Handle); string ret = GLib.Marshaller.Utf8PtrToString (raw_ret); return ret; } } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate int d_g_io_extension_get_priority(IntPtr raw); static d_g_io_extension_get_priority g_io_extension_get_priority = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_io_extension_get_priority")); public int Priority { get { int raw_ret = g_io_extension_get_priority(Handle); int ret = raw_ret; return ret; } } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate IntPtr d_g_io_extension_get_type(IntPtr raw); static d_g_io_extension_get_type g_io_extension_get_type = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_io_extension_get_type")); public GLib.GType GType { get { IntPtr raw_ret = g_io_extension_get_type(Handle); GLib.GType ret = new GLib.GType(raw_ret); return ret; } } public IOExtension(IntPtr raw) : base(raw) {} // Internal representation of the wrapped structure ABI. static GLib.AbiStruct _abi_info = null; static public unsafe GLib.AbiStruct abi_info { get { if (_abi_info == null) _abi_info = new GLib.AbiStruct (new List{ }); return _abi_info; } } // End of the ABI representation. #endregion } }