implement GetTextFaceAliasW <- the win32k part was already implement :)

svn path=/trunk/; revision=28734
This commit is contained in:
Magnus Olsen 2007-09-01 09:21:11 +00:00
parent 1e038f4524
commit 5498466cc2

View file

@ -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;
}
/*