// 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 [StructLayout(LayoutKind.Sequential)] public partial struct Win32RegistrySubkeyIter : IEquatable { private IntPtr _key; private int counter; private int subkey_count; private IntPtr _subkey_name; private UIntPtr subkey_name_size; private UIntPtr subkey_name_len; private string subkey_name_u8; public static GLib.Win32RegistrySubkeyIter Zero = new GLib.Win32RegistrySubkeyIter (); public static GLib.Win32RegistrySubkeyIter New(IntPtr raw) { if (raw == IntPtr.Zero) return GLib.Win32RegistrySubkeyIter.Zero; return (GLib.Win32RegistrySubkeyIter) Marshal.PtrToStructure (raw, typeof (GLib.Win32RegistrySubkeyIter)); } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate void d_g_win32_registry_subkey_iter_assign(IntPtr raw, IntPtr other); static d_g_win32_registry_subkey_iter_assign g_win32_registry_subkey_iter_assign = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_win32_registry_subkey_iter_assign")); public void Assign(GLib.Win32RegistrySubkeyIter other) { IntPtr this_as_native = System.Runtime.InteropServices.Marshal.AllocHGlobal (System.Runtime.InteropServices.Marshal.SizeOf()); System.Runtime.InteropServices.Marshal.StructureToPtr (this, this_as_native, false); IntPtr native_other = GLib.Marshaller.StructureToPtrAlloc (other); g_win32_registry_subkey_iter_assign(this_as_native, native_other); ReadNative (this_as_native, ref this); System.Runtime.InteropServices.Marshal.FreeHGlobal (this_as_native); Marshal.FreeHGlobal (native_other); } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate void d_g_win32_registry_subkey_iter_clear(IntPtr raw); static d_g_win32_registry_subkey_iter_clear g_win32_registry_subkey_iter_clear = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_win32_registry_subkey_iter_clear")); public void Clear() { IntPtr this_as_native = System.Runtime.InteropServices.Marshal.AllocHGlobal (System.Runtime.InteropServices.Marshal.SizeOf()); System.Runtime.InteropServices.Marshal.StructureToPtr (this, this_as_native, false); g_win32_registry_subkey_iter_clear(this_as_native); ReadNative (this_as_native, ref this); System.Runtime.InteropServices.Marshal.FreeHGlobal (this_as_native); } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate bool d_g_win32_registry_subkey_iter_get_name(IntPtr raw, IntPtr subkey_name, out UIntPtr subkey_name_len, out IntPtr error); static d_g_win32_registry_subkey_iter_get_name g_win32_registry_subkey_iter_get_name = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_win32_registry_subkey_iter_get_name")); public unsafe bool GetName(string subkey_name, out ulong subkey_name_len) { IntPtr this_as_native = System.Runtime.InteropServices.Marshal.AllocHGlobal (System.Runtime.InteropServices.Marshal.SizeOf()); System.Runtime.InteropServices.Marshal.StructureToPtr (this, this_as_native, false); UIntPtr native_subkey_name_len; IntPtr error = IntPtr.Zero; bool raw_ret = g_win32_registry_subkey_iter_get_name(this_as_native, GLib.Marshaller.StringToPtrGStrdup(subkey_name), out native_subkey_name_len, out error); bool ret = raw_ret; ReadNative (this_as_native, ref this); System.Runtime.InteropServices.Marshal.FreeHGlobal (this_as_native); subkey_name_len = (ulong) native_subkey_name_len; if (error != IntPtr.Zero) throw new GLib.GException (error); return ret; } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate IntPtr d_g_win32_registry_subkey_iter_get_type(); static d_g_win32_registry_subkey_iter_get_type g_win32_registry_subkey_iter_get_type = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_win32_registry_subkey_iter_get_type")); public static GLib.GType GType { get { IntPtr raw_ret = g_win32_registry_subkey_iter_get_type(); GLib.GType ret = new GLib.GType(raw_ret); return ret; } } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate bool d_g_win32_registry_subkey_iter_init(IntPtr raw, IntPtr key, out IntPtr error); static d_g_win32_registry_subkey_iter_init g_win32_registry_subkey_iter_init = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_win32_registry_subkey_iter_init")); public unsafe bool Init(GLib.Win32RegistryKey key) { IntPtr this_as_native = System.Runtime.InteropServices.Marshal.AllocHGlobal (System.Runtime.InteropServices.Marshal.SizeOf()); System.Runtime.InteropServices.Marshal.StructureToPtr (this, this_as_native, false); IntPtr error = IntPtr.Zero; bool raw_ret = g_win32_registry_subkey_iter_init(this_as_native, key == null ? IntPtr.Zero : key.Handle, out error); bool ret = raw_ret; ReadNative (this_as_native, ref this); System.Runtime.InteropServices.Marshal.FreeHGlobal (this_as_native); if (error != IntPtr.Zero) throw new GLib.GException (error); return ret; } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate UIntPtr d_g_win32_registry_subkey_iter_n_subkeys(IntPtr raw); static d_g_win32_registry_subkey_iter_n_subkeys g_win32_registry_subkey_iter_n_subkeys = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_win32_registry_subkey_iter_n_subkeys")); public ulong NSubkeys() { IntPtr this_as_native = System.Runtime.InteropServices.Marshal.AllocHGlobal (System.Runtime.InteropServices.Marshal.SizeOf()); System.Runtime.InteropServices.Marshal.StructureToPtr (this, this_as_native, false); UIntPtr raw_ret = g_win32_registry_subkey_iter_n_subkeys(this_as_native); ulong ret = (ulong) raw_ret; ReadNative (this_as_native, ref this); System.Runtime.InteropServices.Marshal.FreeHGlobal (this_as_native); return ret; } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate bool d_g_win32_registry_subkey_iter_next(IntPtr raw, bool skip_errors, out IntPtr error); static d_g_win32_registry_subkey_iter_next g_win32_registry_subkey_iter_next = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_win32_registry_subkey_iter_next")); public unsafe bool Next(bool skip_errors) { IntPtr this_as_native = System.Runtime.InteropServices.Marshal.AllocHGlobal (System.Runtime.InteropServices.Marshal.SizeOf()); System.Runtime.InteropServices.Marshal.StructureToPtr (this, this_as_native, false); IntPtr error = IntPtr.Zero; bool raw_ret = g_win32_registry_subkey_iter_next(this_as_native, skip_errors, out error); bool ret = raw_ret; ReadNative (this_as_native, ref this); System.Runtime.InteropServices.Marshal.FreeHGlobal (this_as_native); if (error != IntPtr.Zero) throw new GLib.GException (error); return ret; } static void ReadNative (IntPtr native, ref GLib.Win32RegistrySubkeyIter target) { target = New (native); } public bool Equals (Win32RegistrySubkeyIter other) { return true && _key.Equals (other._key) && counter.Equals (other.counter) && subkey_count.Equals (other.subkey_count) && _subkey_name.Equals (other._subkey_name) && subkey_name_size.Equals (other.subkey_name_size) && subkey_name_len.Equals (other.subkey_name_len) && subkey_name_u8.Equals (other.subkey_name_u8); } public override bool Equals (object other) { return other is Win32RegistrySubkeyIter && Equals ((Win32RegistrySubkeyIter) other); } public override int GetHashCode () { return this.GetType ().FullName.GetHashCode () ^ _key.GetHashCode () ^ counter.GetHashCode () ^ subkey_count.GetHashCode () ^ _subkey_name.GetHashCode () ^ subkey_name_size.GetHashCode () ^ subkey_name_len.GetHashCode () ^ subkey_name_u8.GetHashCode (); } public static explicit operator GLib.Value (GLib.Win32RegistrySubkeyIter boxed) { GLib.Value val = GLib.Value.Empty; val.Init (GLib.Win32RegistrySubkeyIter.GType); val.Val = boxed; return val; } public static explicit operator GLib.Win32RegistrySubkeyIter (GLib.Value val) { return (GLib.Win32RegistrySubkeyIter) val.Val; } #endregion } }