From df77afe61efd44a10a47ec5af4b6e4e1a50078aa Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Fri, 24 Aug 2007 18:36:38 +0000 Subject: [PATCH] bugfix : EngGetCurrentCodePage svn path=/trunk/; revision=28522 --- reactos/dll/win32/gdi32/misc/stubs.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/reactos/dll/win32/gdi32/misc/stubs.c b/reactos/dll/win32/gdi32/misc/stubs.c index 60a20656edc..4b892a27055 100644 --- a/reactos/dll/win32/gdi32/misc/stubs.c +++ b/reactos/dll/win32/gdi32/misc/stubs.c @@ -2633,14 +2633,15 @@ EngFreeModule(HANDLE h) } /* - * @unimplemented + * @implemented */ + VOID STDCALL EngGetCurrentCodePage(OUT PUSHORT OemCodePage, OUT PUSHORT AnsiCodePage) { - OemCodePage = (PUSHORT) GetOEMCP(); - AnsiCodePage = (PUSHORT) GetACP(); + *OemCodePage = GetOEMCP(); + *AnsiCodePage = GetACP(); } /*