mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
15 lines
274 B
C++
15 lines
274 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <Windows.h>
|
|
|
|
namespace Win32
|
|
{
|
|
// Defines which version of the registry we want to view, on 64bit systems with SysWOW64
|
|
enum class RegistryView
|
|
{
|
|
Default = 0,
|
|
Registry64 = KEY_WOW64_64KEY,
|
|
Registry32 = KEY_WOW64_32KEY
|
|
};
|
|
} |