mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
14 lines
260 B
C++
14 lines
260 B
C++
#pragma once
|
|
|
|
#include <Windows.h>
|
|
|
|
namespace Win32
|
|
{
|
|
namespace Registry
|
|
{
|
|
void installHooks();
|
|
void setValue(HKEY key, const char* subKey, const char* valueName, DWORD value);
|
|
void unsetValue(HKEY key, const char* subKey, const char* valueName);
|
|
}
|
|
}
|