user32: Add stub for SetWindowCompositionAttribute.
Based on a patch by Louis Lenders. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=44787 Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
afaada7e5f
commit
67a33fce6f
|
@ -15,7 +15,7 @@
|
||||||
@ stub RecordShutdownReason
|
@ stub RecordShutdownReason
|
||||||
@ stdcall RegisterLogonProcess(long long) user32.RegisterLogonProcess
|
@ stdcall RegisterLogonProcess(long long) user32.RegisterLogonProcess
|
||||||
@ stub SetThreadInputBlocked
|
@ stub SetThreadInputBlocked
|
||||||
@ stub SetWindowCompositionAttribute
|
@ stdcall SetWindowCompositionAttribute(ptr ptr) user32.SetWindowCompositionAttribute
|
||||||
@ stdcall SetWindowStationUser(long long) user32.SetWindowStationUser
|
@ stdcall SetWindowStationUser(long long) user32.SetWindowStationUser
|
||||||
@ stub SwitchDesktopWithFade
|
@ stub SwitchDesktopWithFade
|
||||||
@ stub UnlockWindowStation
|
@ stub UnlockWindowStation
|
||||||
|
|
|
@ -711,6 +711,7 @@
|
||||||
@ stdcall SetUserObjectInformationW(long long ptr long)
|
@ stdcall SetUserObjectInformationW(long long ptr long)
|
||||||
@ stdcall SetUserObjectSecurity(long ptr ptr)
|
@ stdcall SetUserObjectSecurity(long ptr ptr)
|
||||||
@ stdcall SetWinEventHook(long long long ptr long long long)
|
@ stdcall SetWinEventHook(long long long ptr long long long)
|
||||||
|
@ stdcall SetWindowCompositionAttribute(ptr ptr)
|
||||||
@ stdcall SetWindowContextHelpId(long long)
|
@ stdcall SetWindowContextHelpId(long long)
|
||||||
@ stdcall SetWindowDisplayAffinity(long long)
|
@ stdcall SetWindowDisplayAffinity(long long)
|
||||||
@ stub SetWindowFullScreenState
|
@ stub SetWindowFullScreenState
|
||||||
|
|
|
@ -4183,3 +4183,13 @@ BOOL WINAPI SetWindowDisplayAffinity(HWND hwnd, DWORD affinity)
|
||||||
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**********************************************************************
|
||||||
|
* SetWindowCompositionAttribute (USER32.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI SetWindowCompositionAttribute(HWND hwnd, void *data)
|
||||||
|
{
|
||||||
|
FIXME("(%p, %p): stub\n", hwnd, data);
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue