// Copyright (c) Microsoft Corporation
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace Microsoft.CmdPal.Ext.Registry.Constants;
///
/// This class contains names for important registry keys
///
internal static class KeyName
{
///
/// The first name part of each base key without the underscore
///
internal const string FirstPart = "HKEY";
///
/// The first name part of each base key follow by a underscore
///
internal const string FirstPartUnderscore = "HKEY_";
///
/// The short name for the base key HKEY_CLASSES_ROOT (see )
///
internal const string ClassRootShort = "HKCR";
///
/// The short name for the base key HKEY_CURRENT_CONFIG (see )
///
internal const string CurrentConfigShort = "HKCC";
///
/// The short name for the base key HKEY_CURRENT_USER (see )
///
internal const string CurrentUserShort = "HKCU";
///
/// The short name for the base key HKEY_LOCAL_MACHINE (see )
///
internal const string LocalMachineShort = "HKLM";
///
/// The short name for the base key HKEY_PERFORMANCE_DATA (see )
///
internal const string PerformanceDataShort = "HKPD";
///
/// The short name for the base key HKEY_USERS (see )
///
internal const string UsersShort = "HKU";
}