mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
23 lines
213 B
C++
23 lines
213 B
C++
#pragma once
|
|
|
|
#include <Windows.h>
|
|
|
|
namespace Gdi
|
|
{
|
|
namespace Font
|
|
{
|
|
class Mapper
|
|
{
|
|
public:
|
|
Mapper(HDC dc);
|
|
~Mapper();
|
|
|
|
private:
|
|
HDC m_dc;
|
|
HFONT m_origFont;
|
|
};
|
|
|
|
void installHooks();
|
|
}
|
|
}
|