Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RegistryValueKind.cs « Win32 « Microsoft « shared « System.Private.CoreLib « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc6efcc06ffb9b90a4f13f6fd2f4671d1029368e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace Microsoft.Win32
{
#if REGISTRY_ASSEMBLY
    public
#else
    internal
#endif
    enum RegistryValueKind
    {
        String = Interop.Advapi32.RegistryValues.REG_SZ,
        ExpandString = Interop.Advapi32.RegistryValues.REG_EXPAND_SZ,
        Binary = Interop.Advapi32.RegistryValues.REG_BINARY,
        DWord = Interop.Advapi32.RegistryValues.REG_DWORD,
        MultiString = Interop.Advapi32.RegistryValues.REG_MULTI_SZ,
        QWord = Interop.Advapi32.RegistryValues.REG_QWORD,
        Unknown = 0,                          // REG_NONE is defined as zero but BCL
        None = unchecked((int)0xFFFFFFFF), //  mistakenly overrode this value.  
    }   // Now instead of using Interop.Kernel32.RegistryValues.REG_NONE we use "-1".
}