Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Registry.cs
Go to the documentation of this file.
1using System;
2
3namespace Internal.Win32;
4
5internal static class Registry
6{
7 public static readonly RegistryKey CurrentUser = RegistryKey.OpenBaseKey((IntPtr)(-2147483647));
8
9 public static readonly RegistryKey LocalMachine = RegistryKey.OpenBaseKey((IntPtr)(-2147483646));
10}
static RegistryKey OpenBaseKey(IntPtr hKey)
static readonly RegistryKey LocalMachine
Definition Registry.cs:9
static readonly RegistryKey CurrentUser
Definition Registry.cs:7