mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:03:00 +00:00
implement GetTextExtentExPointWPri
svn path=/trunk/; revision=28728
This commit is contained in:
parent
cb8070f587
commit
25340773cc
1 changed files with 9 additions and 5 deletions
|
@ -1533,15 +1533,19 @@ GetLayout(
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
BOOL
|
BOOL
|
||||||
STDCALL
|
STDCALL
|
||||||
GetTextExtentExPointWPri(HDC hdc,LPWSTR lpwsz,ULONG cwc,ULONG dxMax,ULONG *pcCh,PULONG pdxOut,LPSIZE psize)
|
GetTextExtentExPointWPri(HDC hdc,
|
||||||
|
LPWSTR lpwsz,
|
||||||
|
ULONG cwc,
|
||||||
|
ULONG dxMax,
|
||||||
|
ULONG *pcCh,
|
||||||
|
PULONG pdxOut,
|
||||||
|
LPSIZE psize)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
return NtGdiGetTextExtentExW(hdc,lpwsz,cwc,dxMax,pcCh,pdxOut,psize,0);
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue