summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/Microsoft/Win32/RegistryView.cs
blob: ace34f3a07be9b7aa8c75d49c301017c0974779e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

//
//
//
// Implements Microsoft.Win32.RegistryView
//
// ======================================================================================
namespace Microsoft.Win32 {
    using System;
    
    public enum RegistryView {
        Default      = 0,                           // 0x0000 operate on the default registry view
        Registry64   = Win32Native.KEY_WOW64_64KEY, // 0x0100 operate on the 64-bit registry view
        Registry32   = Win32Native.KEY_WOW64_32KEY, // 0x0200 operate on the 32-bit registry view
    };
}