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
|
||||
SetKeyboardState@4
|
||||
SetLastErrorEx@8
|
||||
SetLayeredWindowAttributes@16
|
||||
SetLayeredWindowAttributes@16=NtUserSetLayeredWindowAttributes@16
|
||||
SetLogonNotifyWindow@8
|
||||
SetMenu@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
|
||||
*/
|
||||
|
|
|
@ -2186,13 +2186,13 @@ NTAPI
|
|||
NtUserSetKeyboardState(
|
||||
LPBYTE Unknown0);
|
||||
|
||||
DWORD
|
||||
BOOL
|
||||
NTAPI
|
||||
NtUserSetLayeredWindowAttributes(
|
||||
DWORD Unknown0,
|
||||
DWORD Unknown1,
|
||||
DWORD Unknown2,
|
||||
DWORD Unknown3);
|
||||
HWND hwnd,
|
||||
COLORREF crKey,
|
||||
BYTE bAlpha,
|
||||
DWORD dwFlags);
|
||||
|
||||
DWORD
|
||||
NTAPI
|
||||
|
|
|
@ -4100,15 +4100,14 @@ NtUserSetInternalWindowPos(DWORD Unknown0,
|
|||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
DWORD STDCALL
|
||||
NtUserSetLayeredWindowAttributes(DWORD Unknown0,
|
||||
DWORD Unknown1,
|
||||
DWORD Unknown2,
|
||||
DWORD Unknown3)
|
||||
BOOL STDCALL
|
||||
NtUserSetLayeredWindowAttributes(HWND hwnd,
|
||||
COLORREF crKey,
|
||||
BYTE bAlpha,
|
||||
DWORD dwFlags)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
|
||||
return 0;
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue