Commit d782abff authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

user32: Added stub for UpdateLayeredWindow.

parent 2dacd3c5
...@@ -717,7 +717,7 @@ ...@@ -717,7 +717,7 @@
@ stdcall UnregisterHotKey(long long) @ stdcall UnregisterHotKey(long long)
# @ stub UnregisterMessagePumpHook # @ stub UnregisterMessagePumpHook
# @ stub UnregisterUserApiHook # @ stub UnregisterUserApiHook
# @ stub UpdateLayeredWindow @ stdcall UpdateLayeredWindow(long long ptr ptr long ptr long ptr long)
@ stub UpdatePerUserSystemParameters @ stub UpdatePerUserSystemParameters
@ stdcall UpdateWindow(long) @ stdcall UpdateWindow(long)
@ stdcall User32InitializeImmEntryTable(ptr) @ stdcall User32InitializeImmEntryTable(ptr)
......
...@@ -3077,3 +3077,15 @@ BOOL WINAPI SetLayeredWindowAttributes( HWND hWnd, COLORREF rgbKey, ...@@ -3077,3 +3077,15 @@ BOOL WINAPI SetLayeredWindowAttributes( HWND hWnd, COLORREF rgbKey,
FIXME("(%p,0x%.8lx,%d,%ld): stub!\n", hWnd, rgbKey, bAlpha, dwFlags); FIXME("(%p,0x%.8lx,%d,%ld): stub!\n", hWnd, rgbKey, bAlpha, dwFlags);
return TRUE; return TRUE;
} }
/*****************************************************************************
* UpdateLayeredWindow (USER32.@)
*/
BOOL WINAPI UpdateLayeredWindow( HWND hwnd, HDC hdcDst, POINT *pptDst, SIZE *psize,
HDC hdcSrc, POINT *pptSrc, COLORREF crKey, BLENDFUNCTION *pblend,
DWORD dwFlags)
{
FIXME("(%p,%p,%p,%p,%p,%p,0x%08lx,%p,%ld): stub!\n",
hwnd, hdcDst, pptDst, psize, hdcSrc, pptSrc, crKey, pblend, dwFlags);
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment