1
0
mirror of https://github.com/narzoul/DDrawCompat synced 2024-12-30 08:55:36 +01:00

16 lines
231 B
C++

#pragma once
#include <Windows.h>
namespace Gdi
{
namespace Dc
{
void dllProcessDetach();
void dllThreadDetach();
HDC getDc(HDC origDc, bool useMetaRgn = true);
HDC getOrigDc(HDC dc);
void releaseDc(HDC origDc);
}
}