mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 19:21:38 +00:00
Implement GetCharABCWidthsI in gdi.
svn path=/trunk/; revision=30213
This commit is contained in:
parent
4be86e70e0
commit
8693d776a5
2 changed files with 15 additions and 17 deletions
|
@ -1551,23 +1551,6 @@ GetBrushAttributes(HBRUSH hbr)
|
|||
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
|
||||
*/
|
||||
|
|
|
@ -636,6 +636,21 @@ DPRINT1("GCABCWFA iFirstChar %x\n",iFirstChar);
|
|||
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
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue