mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
18 lines
337 B
C++
18 lines
337 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace Win32
|
|
{
|
|
// Registry hive values, built-in hive handles
|
|
enum class RegistryHive : uint32_t
|
|
{
|
|
ClassesRoot = 0x80000000,
|
|
CurrentUser = 0x80000001,
|
|
LocalMachine = 0x80000002,
|
|
Users = 0x80000003,
|
|
PerformanceData = 0x80000004,
|
|
CurrentConfig = 0x80000005,
|
|
DynData = 0x80000006,
|
|
};
|
|
} |