[DllImport] registry methods when the Microsoft.Win32 namespace is not

available (untested).
This commit is contained in:
Stefanos A 2013-10-12 05:15:46 +02:00
parent 70818d97e1
commit 30e42bb6dd
2 changed files with 69 additions and 0 deletions

View file

@ -34,6 +34,8 @@ namespace OpenTK.Platform.Windows
using HICON = System.IntPtr; using HICON = System.IntPtr;
using HBRUSH = System.IntPtr; using HBRUSH = System.IntPtr;
using HCURSOR = System.IntPtr; using HCURSOR = System.IntPtr;
using HKEY = System.IntPtr;
using PHKEY = System.IntPtr;
using LRESULT = System.IntPtr; using LRESULT = System.IntPtr;
using LPVOID = System.IntPtr; using LPVOID = System.IntPtr;
@ -71,6 +73,8 @@ namespace OpenTK.Platform.Windows
using TIMERPROC = Functions.TimerProc; using TIMERPROC = Functions.TimerProc;
using REGSAM = System.UInt32;
#endregion #endregion
/// \internal /// \internal
@ -1511,6 +1515,27 @@ namespace OpenTK.Platform.Windows
public static extern DWORD_PTR SHGetFileInfo(LPCTSTR pszPath, DWORD dwFileAttributes, ref SHFILEINFO psfi, UINT cbFileInfo, ShGetFileIconFlags uFlags); public static extern DWORD_PTR SHGetFileInfo(LPCTSTR pszPath, DWORD dwFileAttributes, ref SHFILEINFO psfi, UINT cbFileInfo, ShGetFileIconFlags uFlags);
#endregion #endregion
#region Registry Functions
[DllImport("Advapi32.dll")]
internal static extern int RegOpenKeyEx(
HKEY hKey,
[MarshalAs(UnmanagedType.LPTStr)] LPCTSTR lpSubKey,
DWORD ulOptions,
REGSAM samDesired,
out PHKEY phkResult);
internal static extern int RegGetValue(
HKEY hkey,
[MarshalAs(UnmanagedType.LPTStr)] LPCTSTR lpSubKey,
[MarshalAs(UnmanagedType.LPTStr)] LPCTSTR lpValue,
DWORD dwFlags,
out DWORD pdwType,
StringBuilder pvData,
ref DWORD pcbData);
#endregion
} }
#region --- Constants --- #region --- Constants ---
@ -1604,6 +1629,8 @@ namespace OpenTK.Platform.Windows
internal const int ENUM_CURRENT_SETTINGS = -1; internal const int ENUM_CURRENT_SETTINGS = -1;
internal static readonly IntPtr MESSAGE_ONLY = new IntPtr(-3); internal static readonly IntPtr MESSAGE_ONLY = new IntPtr(-3);
internal static readonly IntPtr HKEY_LOCAL_MACHINE = new IntPtr(0x80000002);
} }
#endregion #endregion
@ -2848,6 +2875,46 @@ namespace OpenTK.Platform.Windows
#endregion #endregion
#region Registry
#if ANDROID || IPHONE || MINIMAL
internal class RegistryKey
{
IntPtr hkey;
internal RegistryKey(IntPtr hkey)
{
this.hkey = hkey;
}
internal string GetValue(string subkey)
{
int type;
int data_size = 255;
StringBuilder data = new StringBuilder(data_size);
Functions.RegGetValue(hkey, subkey, "", 0xffff, out type, data, ref data_size);
return data.ToString();
}
internal RegistryKey OpenSubKey(string subkey)
{
IntPtr result;
Functions.RegOpenKeyEx(hkey, subkey, 0, 1, out result);
return new RegistryKey(result);
}
}
internal static class Registry
{
internal static readonly RegistryKey LocalMachine =
new RegistryKey(Constants.HKEY_LOCAL_MACHINE);
}
#endif
#endregion
#endregion #endregion
#region --- Enums --- #region --- Enums ---

View file

@ -29,7 +29,9 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
#if !(ANDROID || IPHONE || MINIMAL)
using Microsoft.Win32; using Microsoft.Win32;
#endif
using OpenTK.Input; using OpenTK.Input;
namespace OpenTK.Platform.Windows namespace OpenTK.Platform.Windows