1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 namespace Microsoft.Win32
6 {
7     /**
8      * Registry hive values.  Useful only for GetRemoteBaseKey
9      */
10 #if REGISTRY_ASSEMBLY
11     public
12 #else
13     internal
14 #endif
15     enum RegistryHive
16     {
17         ClassesRoot = unchecked((int)0x80000000),
18         CurrentUser = unchecked((int)0x80000001),
19         LocalMachine = unchecked((int)0x80000002),
20         Users = unchecked((int)0x80000003),
21         PerformanceData = unchecked((int)0x80000004),
22         CurrentConfig = unchecked((int)0x80000005),
23     }
24 }
25