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 STDCALL
GetTextFaceAliasW(HDC hdc,int cChar,LPWSTR pszOut) GetTextFaceAliasW(HDC hdc,
int cChar,
LPWSTR pszOut)
{ {
UNIMPLEMENTED; INT retValue = 0;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED); if ((!pszOut) || (cChar))
return 0; {
retValue = NtGdiGetTextFaceW(hdc,cChar,pszOut,TRUE);
}
else
{
SetLastError(ERROR_INVALID_PARAMETER);
}
return retValue;
} }
/* /*