mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:35:47 +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
|
||||
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;
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
return NtGdiGetTextExtentExW(hdc,lpwsz,cwc,dxMax,pcCh,pdxOut,psize,0);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue