no more submodule
This commit is contained in:
115
GtkSharp/Source/Libs/GioSharp/Generated/GLib/IOExtensionPoint.cs
Normal file
115
GtkSharp/Source/Libs/GioSharp/Generated/GLib/IOExtensionPoint.cs
Normal file
@@ -0,0 +1,115 @@
|
||||
// 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 IOExtensionPoint : GLib.Opaque {
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate IntPtr d_g_io_extension_point_get_extension_by_name(IntPtr raw, IntPtr name);
|
||||
static d_g_io_extension_point_get_extension_by_name g_io_extension_point_get_extension_by_name = FuncLoader.LoadFunction<d_g_io_extension_point_get_extension_by_name>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_io_extension_point_get_extension_by_name"));
|
||||
|
||||
public GLib.IOExtension GetExtensionByName(string name) {
|
||||
IntPtr native_name = GLib.Marshaller.StringToPtrGStrdup (name);
|
||||
IntPtr raw_ret = g_io_extension_point_get_extension_by_name(Handle, native_name);
|
||||
GLib.IOExtension ret = raw_ret == IntPtr.Zero ? null : (GLib.IOExtension) GLib.Opaque.GetOpaque (raw_ret, typeof (GLib.IOExtension), false);
|
||||
GLib.Marshaller.Free (native_name);
|
||||
return ret;
|
||||
}
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate IntPtr d_g_io_extension_point_get_extensions(IntPtr raw);
|
||||
static d_g_io_extension_point_get_extensions g_io_extension_point_get_extensions = FuncLoader.LoadFunction<d_g_io_extension_point_get_extensions>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_io_extension_point_get_extensions"));
|
||||
|
||||
public GLib.List Extensions {
|
||||
get {
|
||||
IntPtr raw_ret = g_io_extension_point_get_extensions(Handle);
|
||||
GLib.List ret = new GLib.List(raw_ret);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate IntPtr d_g_io_extension_point_get_required_type(IntPtr raw);
|
||||
static d_g_io_extension_point_get_required_type g_io_extension_point_get_required_type = FuncLoader.LoadFunction<d_g_io_extension_point_get_required_type>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_io_extension_point_get_required_type"));
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate void d_g_io_extension_point_set_required_type(IntPtr raw, IntPtr type);
|
||||
static d_g_io_extension_point_set_required_type g_io_extension_point_set_required_type = FuncLoader.LoadFunction<d_g_io_extension_point_set_required_type>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_io_extension_point_set_required_type"));
|
||||
|
||||
public GLib.GType RequiredType {
|
||||
get {
|
||||
IntPtr raw_ret = g_io_extension_point_get_required_type(Handle);
|
||||
GLib.GType ret = new GLib.GType(raw_ret);
|
||||
return ret;
|
||||
}
|
||||
set {
|
||||
g_io_extension_point_set_required_type(Handle, value.Val);
|
||||
}
|
||||
}
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate IntPtr d_g_io_extension_point_implement(IntPtr extension_point_name, IntPtr type, IntPtr extension_name, int priority);
|
||||
static d_g_io_extension_point_implement g_io_extension_point_implement = FuncLoader.LoadFunction<d_g_io_extension_point_implement>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_io_extension_point_implement"));
|
||||
|
||||
public static GLib.IOExtension Implement(string extension_point_name, GLib.GType type, string extension_name, int priority) {
|
||||
IntPtr native_extension_point_name = GLib.Marshaller.StringToPtrGStrdup (extension_point_name);
|
||||
IntPtr native_extension_name = GLib.Marshaller.StringToPtrGStrdup (extension_name);
|
||||
IntPtr raw_ret = g_io_extension_point_implement(native_extension_point_name, type.Val, native_extension_name, priority);
|
||||
GLib.IOExtension ret = raw_ret == IntPtr.Zero ? null : (GLib.IOExtension) GLib.Opaque.GetOpaque (raw_ret, typeof (GLib.IOExtension), false);
|
||||
GLib.Marshaller.Free (native_extension_point_name);
|
||||
GLib.Marshaller.Free (native_extension_name);
|
||||
return ret;
|
||||
}
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate IntPtr d_g_io_extension_point_lookup(IntPtr name);
|
||||
static d_g_io_extension_point_lookup g_io_extension_point_lookup = FuncLoader.LoadFunction<d_g_io_extension_point_lookup>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_io_extension_point_lookup"));
|
||||
|
||||
public static GLib.IOExtensionPoint Lookup(string name) {
|
||||
IntPtr native_name = GLib.Marshaller.StringToPtrGStrdup (name);
|
||||
IntPtr raw_ret = g_io_extension_point_lookup(native_name);
|
||||
GLib.IOExtensionPoint ret = raw_ret == IntPtr.Zero ? null : (GLib.IOExtensionPoint) GLib.Opaque.GetOpaque (raw_ret, typeof (GLib.IOExtensionPoint), false);
|
||||
GLib.Marshaller.Free (native_name);
|
||||
return ret;
|
||||
}
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate IntPtr d_g_io_extension_point_register(IntPtr name);
|
||||
static d_g_io_extension_point_register g_io_extension_point_register = FuncLoader.LoadFunction<d_g_io_extension_point_register>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_io_extension_point_register"));
|
||||
|
||||
public static GLib.IOExtensionPoint Register(string name) {
|
||||
IntPtr native_name = GLib.Marshaller.StringToPtrGStrdup (name);
|
||||
IntPtr raw_ret = g_io_extension_point_register(native_name);
|
||||
GLib.IOExtensionPoint ret = raw_ret == IntPtr.Zero ? null : (GLib.IOExtensionPoint) GLib.Opaque.GetOpaque (raw_ret, typeof (GLib.IOExtensionPoint), false);
|
||||
GLib.Marshaller.Free (native_name);
|
||||
return ret;
|
||||
}
|
||||
|
||||
public IOExtensionPoint(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<GLib.AbiField>{
|
||||
});
|
||||
|
||||
return _abi_info;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// End of the ABI representation.
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user