Move NtGdiGetCharWidthW into text.

svn path=/trunk/; revision=30236
This commit is contained in:
James Tabor 2007-11-07 00:12:17 +00:00
parent b2b76c26a3
commit a221ab29d5
2 changed files with 17 additions and 17 deletions

View file

@ -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,

View file

@ -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)