comctl32: Add stub for DrawShadowText.
This commit is contained in:
parent
e5c8a6eb5d
commit
b7a5985bca
|
@ -125,6 +125,7 @@
|
|||
@ stdcall DestroyPropertySheetPage(long)
|
||||
@ stdcall -private DllGetVersion(ptr)
|
||||
@ stdcall -private DllInstall(long wstr)
|
||||
@ stdcall DrawShadowText(long wstr long ptr long long long long long)
|
||||
@ stdcall DrawStatusText(long ptr ptr long) DrawStatusTextA
|
||||
@ stdcall DrawStatusTextW(long ptr wstr long)
|
||||
@ stdcall FlatSB_EnableScrollBar (long long long)
|
||||
|
|
|
@ -1522,3 +1522,16 @@ LRESULT WINAPI SetPathWordBreakProc(HWND hwnd, BOOL bSet)
|
|||
return SendMessageW(hwnd, EM_SETWORDBREAKPROC, 0,
|
||||
(LPARAM)(bSet ? PathWordBreakProc : NULL));
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* DrawShadowText [COMCTL32.@]
|
||||
*
|
||||
* Draw text with shadow.
|
||||
*/
|
||||
int WINAPI DrawShadowText(HDC hdc, LPCWSTR pszText, UINT cch, const RECT *pRect, DWORD dwFlags,
|
||||
COLORREF crText, COLORREF crShadow, int ixOffset, int iyOffset)
|
||||
{
|
||||
FIXME("(%p, %s, %d, %p, %d, 0x%08x, 0x%08x, %d, %d): stub\n", hdc, debugstr_w(pszText), cch, pRect, dwFlags,
|
||||
crText, crShadow, ixOffset, iyOffset);
|
||||
return DrawTextW(hdc, pszText, cch, (LPRECT)pRect, DT_LEFT);
|
||||
}
|
||||
|
|
|
@ -713,7 +713,7 @@ BOOL WINAPI GetWindowSubclass(HWND, SUBCLASSPROC, UINT_PTR, DWORD_PTR*);
|
|||
BOOL WINAPI RemoveWindowSubclass(HWND, SUBCLASSPROC, UINT_PTR);
|
||||
LRESULT WINAPI DefSubclassProc(HWND, UINT, WPARAM, LPARAM);
|
||||
|
||||
int WINAPI DrawShadowText(HDC, LPCWSTR, UINT, RECT*, DWORD, COLORREF, COLORREF, int, int);
|
||||
int WINAPI DrawShadowText(HDC, LPCWSTR, UINT, const RECT*, DWORD, COLORREF, COLORREF, int, int);
|
||||
|
||||
/* Header control */
|
||||
|
||||
|
|
Loading…
Reference in New Issue