Commit b08e77d9 authored by Felix Nawothnig's avatar Felix Nawothnig Committed by Alexandre Julliard

Add stub for SetLayeredWindowAttributes.

parent 4ec5aa68
......@@ -570,6 +570,7 @@
@ stdcall SetInternalWindowPos(long long ptr ptr)
@ stdcall SetKeyboardState(ptr)
@ stdcall SetLastErrorEx(long long)
@ stdcall SetLayeredWindowAttributes(ptr long long long)
@ stdcall SetLogonNotifyWindow(long long)
@ stdcall SetMenu(long long)
@ stdcall SetMenuContextHelpId(long long)
......
......@@ -3055,3 +3055,13 @@ BOOL WINAPI SwitchDesktop( HDESK hDesktop)
FIXME("SwitchDesktop(hwnd %p) stub!\n", hDesktop);
return TRUE;
}
/*****************************************************************************
* SetLayeredWindowAttributes (USER32.@)
*/
BOOL WINAPI SetLayeredWindowAttributes( HWND hWnd, COLORREF rgbKey,
BYTE bAlpha, DWORD dwFlags )
{
FIXME("(%p,0x%.8lx,%d,%ld): stub!\n", hWnd, rgbKey, bAlpha, dwFlags);
return TRUE;
}
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