Update SetLayeredWindowAttributes.

svn path=/trunk/; revision=34350
This commit is contained in:
James Tabor 2008-07-07 05:54:36 +00:00
parent e32689dbb6
commit fe82a25252
4 changed files with 13 additions and 28 deletions

View file

@ -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

View file

@ -1547,20 +1547,6 @@ SetForegroundWindow(HWND hWnd)
} }
/*
* @unimplemented
*/
BOOL STDCALL
SetLayeredWindowAttributes(HWND hwnd,
COLORREF crKey,
BYTE bAlpha,
DWORD dwFlags)
{
UNIMPLEMENTED;
return FALSE;
}
/* /*
* @implemented * @implemented
*/ */

View file

@ -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

View file

@ -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;
} }