implement GetStringBitmapW (left todo, implement it in win32k)

svn path=/trunk/; revision=28725
This commit is contained in:
Magnus Olsen 2007-08-31 22:21:35 +00:00
parent f7d3b17972
commit abe208bcc5

View file

@ -330,15 +330,25 @@ GetGlyphIndicesW(
} }
/* /*
* @unimplemented * @implemented
*/ */
UINT UINT
STDCALL STDCALL
GetStringBitmapW(HDC hdc,LPWSTR pwsz,BOOL unknown,UINT cj,BYTE *lpSB) GetStringBitmapW(HDC hdc,
LPWSTR pwsz,
BOOL doCall,
UINT cj,
BYTE *lpSB)
{ {
UNIMPLEMENTED; UINT retValue = 0;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0; if (doCall)
{
retValue = NtGdiGetStringBitmapW(hdc, pwsz, 1, lpSB, cj);
}
return retValue;
} }