mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
Update SetLayeredWindowAttributes.
svn path=/trunk/; revision=34350
This commit is contained in:
parent
e32689dbb6
commit
fe82a25252
4 changed files with 13 additions and 28 deletions
|
@ -610,7 +610,7 @@ SetForegroundWindow@4
|
||||||
SetInternalWindowPos@16
|
SetInternalWindowPos@16
|
||||||
SetKeyboardState@4
|
SetKeyboardState@4
|
||||||
SetLastErrorEx@8
|
SetLastErrorEx@8
|
||||||
SetLayeredWindowAttributes@16
|
SetLayeredWindowAttributes@16=NtUserSetLayeredWindowAttributes@16
|
||||||
SetLogonNotifyWindow@8
|
SetLogonNotifyWindow@8
|
||||||
SetMenu@8
|
SetMenu@8
|
||||||
SetMenuContextHelpId@8
|
SetMenuContextHelpId@8
|
||||||
|
|
|
@ -1547,20 +1547,6 @@ SetForegroundWindow(HWND hWnd)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
BOOL STDCALL
|
|
||||||
SetLayeredWindowAttributes(HWND hwnd,
|
|
||||||
COLORREF crKey,
|
|
||||||
BYTE bAlpha,
|
|
||||||
DWORD dwFlags)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @implemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -2186,13 +2186,13 @@ NTAPI
|
||||||
NtUserSetKeyboardState(
|
NtUserSetKeyboardState(
|
||||||
LPBYTE Unknown0);
|
LPBYTE Unknown0);
|
||||||
|
|
||||||
DWORD
|
BOOL
|
||||||
NTAPI
|
NTAPI
|
||||||
NtUserSetLayeredWindowAttributes(
|
NtUserSetLayeredWindowAttributes(
|
||||||
DWORD Unknown0,
|
HWND hwnd,
|
||||||
DWORD Unknown1,
|
COLORREF crKey,
|
||||||
DWORD Unknown2,
|
BYTE bAlpha,
|
||||||
DWORD Unknown3);
|
DWORD dwFlags);
|
||||||
|
|
||||||
DWORD
|
DWORD
|
||||||
NTAPI
|
NTAPI
|
||||||
|
|
|
@ -4100,15 +4100,14 @@ NtUserSetInternalWindowPos(DWORD Unknown0,
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
DWORD STDCALL
|
BOOL STDCALL
|
||||||
NtUserSetLayeredWindowAttributes(DWORD Unknown0,
|
NtUserSetLayeredWindowAttributes(HWND hwnd,
|
||||||
DWORD Unknown1,
|
COLORREF crKey,
|
||||||
DWORD Unknown2,
|
BYTE bAlpha,
|
||||||
DWORD Unknown3)
|
DWORD dwFlags)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED
|
UNIMPLEMENTED;
|
||||||
|
return FALSE;
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue