mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 08:53:02 +00:00
implement GetStringBitmapW (left todo, implement it in win32k)
svn path=/trunk/; revision=28725
This commit is contained in:
parent
f7d3b17972
commit
abe208bcc5
1 changed files with 15 additions and 5 deletions
|
@ -330,15 +330,25 @@ GetGlyphIndicesW(
|
|||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
UINT
|
||||
STDCALL
|
||||
GetStringBitmapW(HDC hdc,LPWSTR pwsz,BOOL unknown,UINT cj,BYTE *lpSB)
|
||||
GetStringBitmapW(HDC hdc,
|
||||
LPWSTR pwsz,
|
||||
BOOL doCall,
|
||||
UINT cj,
|
||||
BYTE *lpSB)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
UINT retValue = 0;
|
||||
|
||||
if (doCall)
|
||||
{
|
||||
retValue = NtGdiGetStringBitmapW(hdc, pwsz, 1, lpSB, cj);
|
||||
}
|
||||
|
||||
return retValue;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue