mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 07:53:07 +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,20 +34,24 @@ PolyTextOutW(
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
DWORD
|
DWORD
|
||||||
STDCALL
|
STDCALL
|
||||||
GetKerningPairsW(
|
GetKerningPairsW(HDC hdc,
|
||||||
HDC a0,
|
ULONG cPairs,
|
||||||
DWORD a1,
|
LPKERNINGPAIR pkpDst)
|
||||||
LPKERNINGPAIR a2
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
if ((cPairs != 0) || (pkpDst == 0))
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
{
|
||||||
|
return NtGdiGetKerningPairs(hdc,cPairs,pkpDst);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
SetLastError(ERROR_INVALID_PARAMETER);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue