mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 15:08:14 +00:00
implement GetKerningPairsW (left todo implement it to win32k.sys)
svn path=/trunk/; revision=28715
This commit is contained in:
parent
02c180f13c
commit
7d2d0b3329
1 changed files with 13 additions and 9 deletions
|
@ -34,19 +34,23 @@ PolyTextOutW(
|
|||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
DWORD
|
||||
STDCALL
|
||||
GetKerningPairsW(
|
||||
HDC a0,
|
||||
DWORD a1,
|
||||
LPKERNINGPAIR a2
|
||||
)
|
||||
GetKerningPairsW(HDC hdc,
|
||||
ULONG cPairs,
|
||||
LPKERNINGPAIR pkpDst)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
if ((cPairs != 0) || (pkpDst == 0))
|
||||
{
|
||||
return NtGdiGetKerningPairs(hdc,cPairs,pkpDst);
|
||||
}
|
||||
else
|
||||
{
|
||||
SetLastError(ERROR_INVALID_PARAMETER);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue