X-Git-Url: https://git.reactos.org/?p=reactos.git;a=blobdiff_plain;f=reactos%2Fdll%2Fwin32%2Fgdi32%2Fmisc%2Fhistoric.c;h=71c3c3db7f999b6d6d0a0f02875777335bd6142a;hp=7aef41cb264852afece505a9be196bdf6c67b98c;hb=a9892925a1509814598277689baabbd50ca9c70a;hpb=d9d416611c70393125bdce9156384c9d70862c2f diff --git a/reactos/dll/win32/gdi32/misc/historic.c b/reactos/dll/win32/gdi32/misc/historic.c index 7aef41cb264..71c3c3db7f9 100644 --- a/reactos/dll/win32/gdi32/misc/historic.c +++ b/reactos/dll/win32/gdi32/misc/historic.c @@ -15,6 +15,17 @@ #include #include +/* + * @implemented + */ +BOOL +STDCALL +EngQueryEMFInfo(HDEV hdev, + EMFINFO *pEMFInfo) +{ + return FALSE; +} + /* * @implemented */ @@ -243,3 +254,45 @@ SelectBrushLocal(HBRUSH Currenthbm, { return Newhbm; } + +/* + * @implemented + */ +HFONT +STDCALL +SelectFontLocal(HFONT Currenthfnt, + HFONT newhfnt) +{ + return newhfnt; +} + +/* + * @implemented + */ +HBRUSH +STDCALL +GdiGetLocalBrush(HBRUSH hbr) +{ + return hbr; +} + +/* + * @implemented + */ +HDC +STDCALL +GdiGetLocalDC(HDC hdc) +{ + return hdc; +} + +/* + * @implemented + */ +HFONT +STDCALL +GdiGetLocalFont(HFONT hfont) +{ + return hfont; +} +