Implement GetCharABCWidthsI in gdi.

svn path=/trunk/; revision=30213
This commit is contained in:
James Tabor 2007-11-06 07:27:55 +00:00
parent 4be86e70e0
commit 8693d776a5
2 changed files with 15 additions and 17 deletions

View file

@ -1551,23 +1551,6 @@ GetBrushAttributes(HBRUSH hbr)
return 0; return 0;
} }
/*
* @unimplemented
*/
BOOL
STDCALL
GetCharABCWidthsI(HDC hdc,
UINT giFirst,
UINT cgi,
LPWORD pgi,
LPABC lpabc
)
{
UNIMPLEMENTED;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
/* /*
* @unimplemented * @unimplemented
*/ */

View file

@ -636,6 +636,21 @@ DPRINT1("GCABCWFA iFirstChar %x\n",iFirstChar);
return NtGdiGetCharABCWidthsFloat ( hdc, iFirstChar, iLastChar, lpABCF ); return NtGdiGetCharABCWidthsFloat ( hdc, iFirstChar, iLastChar, lpABCF );
} }
/*
* @implemented
*/
BOOL
STDCALL
GetCharABCWidthsI(HDC hdc,
UINT giFirst,
UINT cgi,
LPWORD pgi,
LPABC lpabc
)
{
return NtGdiGetCharABCWidthsW( hdc, giFirst, (ULONG) cgi, (PWCHAR) pgi, 3, (PVOID)lpabc);
}
/* /*
* @implemented * @implemented
*/ */