using System; using System.Runtime.InteropServices; namespace Microsoft.Win32 { /// Represents the possible values for a top-level node on a foreign machine. // Token: 0x02000074 RID: 116 [ComVisible(true)] [Serializable] public enum RegistryHive { /// Represents the HKEY_CLASSES_ROOT base key on another computer. This value can be passed to the method, to open this node remotely. // Token: 0x040000E5 RID: 229 ClassesRoot = -2147483648, /// Represents the HKEY_CURRENT_CONFIG base key on another computer. This value can be passed to the method, to open this node remotely. // Token: 0x040000E6 RID: 230 CurrentConfig = -2147483643, /// Represents the HKEY_CURRENT_USER base key on another computer. This value can be passed to the method, to open this node remotely. // Token: 0x040000E7 RID: 231 CurrentUser = -2147483647, /// Represents the HKEY_DYN_DATA base key on another computer. This value can be passed to the method, to open this node remotely. // Token: 0x040000E8 RID: 232 DynData = -2147483642, /// Represents the HKEY_LOCAL_MACHINE base key on another computer. This value can be passed to the method, to open this node remotely. // Token: 0x040000E9 RID: 233 LocalMachine = -2147483646, /// Represents the HKEY_PERFORMANCE_DATA base key on another computer. This value can be passed to the method, to open this node remotely. // Token: 0x040000EA RID: 234 PerformanceData = -2147483644, /// Represents the HKEY_USERS base key on another computer. This value can be passed to the method, to open this node remotely. // Token: 0x040000EB RID: 235 Users = -2147483645 } }