Add stub for SetLayeredWindowAttributes.

This commit is contained in:
Felix Nawothnig 2005-07-18 09:13:13 +00:00 committed by Alexandre Julliard
parent 4ec5aa68b2
commit b08e77d9a3
2 changed files with 11 additions and 0 deletions

View File

@ -570,6 +570,7 @@
@ stdcall SetInternalWindowPos(long long ptr ptr) @ stdcall SetInternalWindowPos(long long ptr ptr)
@ stdcall SetKeyboardState(ptr) @ stdcall SetKeyboardState(ptr)
@ stdcall SetLastErrorEx(long long) @ stdcall SetLastErrorEx(long long)
@ stdcall SetLayeredWindowAttributes(ptr long long long)
@ stdcall SetLogonNotifyWindow(long long) @ stdcall SetLogonNotifyWindow(long long)
@ stdcall SetMenu(long long) @ stdcall SetMenu(long long)
@ stdcall SetMenuContextHelpId(long long) @ stdcall SetMenuContextHelpId(long long)

View File

@ -3055,3 +3055,13 @@ BOOL WINAPI SwitchDesktop( HDESK hDesktop)
FIXME("SwitchDesktop(hwnd %p) stub!\n", hDesktop); FIXME("SwitchDesktop(hwnd %p) stub!\n", hDesktop);
return TRUE; 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;
}