mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
18 lines
238 B
C++
18 lines
238 B
C++
#pragma once
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <Windows.h>
|
|
|
|
namespace Win32
|
|
{
|
|
namespace DisplayMode
|
|
{
|
|
DWORD getBpp();
|
|
ULONG queryDisplaySettingsUniqueness();
|
|
|
|
void disableDwm8And16BitMitigation();
|
|
void installHooks();
|
|
}
|
|
}
|