From a221ab29d5053a20679b07c0d56d55b1409b9ccd Mon Sep 17 00:00:00 2001 From: James Tabor Date: Wed, 7 Nov 2007 00:12:17 +0000 Subject: [PATCH] Move NtGdiGetCharWidthW into text. svn path=/trunk/; revision=30236 --- reactos/subsystems/win32/win32k/objects/text.c | 17 +++++++++++++++++ reactos/subsystems/win32/win32k/stubs/stubs.c | 17 ----------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/reactos/subsystems/win32/win32k/objects/text.c b/reactos/subsystems/win32/win32k/objects/text.c index 3a3ab3e7685..aa3cd191388 100644 --- a/reactos/subsystems/win32/win32k/objects/text.c +++ b/reactos/subsystems/win32/win32k/objects/text.c @@ -2268,6 +2268,23 @@ NtGdiGetCharABCWidthsW( return FALSE; } + /* + * @unimplemented + */ +BOOL +STDCALL +NtGdiGetCharWidthW( + IN HDC hdc, + IN UINT wcFirst, + IN UINT cwc, + IN OPTIONAL PWCHAR pwc, + IN FLONG fl, + OUT PVOID pvBuf) +{ + UNIMPLEMENTED; + return FALSE; +} + BOOL STDCALL NtGdiGetCharWidth32(HDC hDC, diff --git a/reactos/subsystems/win32/win32k/stubs/stubs.c b/reactos/subsystems/win32/win32k/stubs/stubs.c index 5c0882d09fc..1a73ae42d18 100644 --- a/reactos/subsystems/win32/win32k/stubs/stubs.c +++ b/reactos/subsystems/win32/win32k/stubs/stubs.c @@ -2497,23 +2497,6 @@ NtGdiGetCharacterPlacementW( */ BOOL STDCALL -NtGdiGetCharWidthW( - IN HDC hdc, - IN UINT wcFirst, - IN UINT cwc, - IN OPTIONAL PWCHAR pwc, - IN FLONG fl, - OUT PVOID pvBuf) -{ - UNIMPLEMENTED; - return FALSE; -} - - /* - * @unimplemented - */ -BOOL -STDCALL NtGdiGetCharWidthInfo( IN HDC hdc, OUT PCHWIDTHINFO pChWidthInfo)