mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
implement GetTextFaceAliasW <- the win32k part was already implement :)
svn path=/trunk/; revision=28734
This commit is contained in:
parent
1e038f4524
commit
5498466cc2
1 changed files with 15 additions and 6 deletions
|
@ -1549,15 +1549,24 @@ GetTextExtentExPointWPri(HDC hdc,
|
|||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
int
|
||||
INT
|
||||
STDCALL
|
||||
GetTextFaceAliasW(HDC hdc,int cChar,LPWSTR pszOut)
|
||||
GetTextFaceAliasW(HDC hdc,
|
||||
int cChar,
|
||||
LPWSTR pszOut)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
INT retValue = 0;
|
||||
if ((!pszOut) || (cChar))
|
||||
{
|
||||
retValue = NtGdiGetTextFaceW(hdc,cChar,pszOut,TRUE);
|
||||
}
|
||||
else
|
||||
{
|
||||
SetLastError(ERROR_INVALID_PARAMETER);
|
||||
}
|
||||
return retValue;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue