Add stub for SetLayeredWindowAttributes.
This commit is contained in:
parent
4ec5aa68b2
commit
b08e77d9a3
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue