using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace Microsoft.Win32
{
/// Provides objects that represent the root keys in the Windows registry, and methods to access key/value pairs.
// Token: 0x02000064 RID: 100
[Token(Token = "0x2000064")]
[ComVisible(true)]
public static class Registry
{
/// Defines the types (or classes) of documents and the properties associated with those types. This field reads the Windows registry base key HKEY_CLASSES_ROOT.
// Token: 0x04000181 RID: 385
[Token(Token = "0x4000181")]
public static readonly RegistryKey ClassesRoot;
/// Contains configuration information pertaining to the hardware that is not specific to the user. This field reads the Windows registry base key HKEY_CURRENT_CONFIG.
// Token: 0x04000182 RID: 386
[Token(Token = "0x4000182")]
public static readonly RegistryKey CurrentConfig;
/// Contains information about the current user preferences. This field reads the Windows registry base key HKEY_CURRENT_USER.
// Token: 0x04000183 RID: 387
[Token(Token = "0x4000183")]
public static readonly RegistryKey CurrentUser;
/// Contains dynamic registry data. This field reads the Windows registry base key HKEY_DYN_DATA.
/// The operating system does not support dynamic data; that is, it is not Windows 98, Windows 98 Second Edition, or Windows Millennium Edition (Windows Me).
// Token: 0x04000184 RID: 388
[Token(Token = "0x4000184")]
[Obsolete]
public static readonly RegistryKey DynData;
/// Contains the configuration data for the local machine. This field reads the Windows registry base key HKEY_LOCAL_MACHINE.
// Token: 0x04000185 RID: 389
[Token(Token = "0x4000185")]
public static readonly RegistryKey LocalMachine;
/// Contains performance information for software components. This field reads the Windows registry base key HKEY_PERFORMANCE_DATA.
// Token: 0x04000186 RID: 390
[Token(Token = "0x4000186")]
public static readonly RegistryKey PerformanceData;
/// Contains information about the default user configuration. This field reads the Windows registry base key HKEY_USERS.
// Token: 0x04000187 RID: 391
[Token(Token = "0x4000187")]
public static readonly RegistryKey Users;
}
}