user32: Add stub for GetLayeredWindowAttributes.

This commit is contained in:
Louis Lenders 2008-01-10 08:36:39 +00:00 committed by Alexandre Julliard
parent 368d935350
commit a467feae39
2 changed files with 11 additions and 1 deletions

View File

@ -304,7 +304,7 @@
@ stdcall GetKeyboardType(long)
@ stdcall GetLastActivePopup(long)
@ stdcall GetLastInputInfo(ptr)
# @ stub GetLayeredWindowAttributes
@ stdcall GetLayeredWindowAttributes(long ptr ptr ptr)
# @ stub GetListBoxInfo
@ stdcall GetMenu(long)
@ stdcall GetMenuBarInfo(long long long ptr)

View File

@ -3083,6 +3083,16 @@ BOOL WINAPI SetLayeredWindowAttributes( HWND hWnd, COLORREF rgbKey,
return TRUE;
}
/*****************************************************************************
* GetLayeredWindowAttributes (USER32.@)
*/
BOOL WINAPI GetLayeredWindowAttributes( HWND hWnd, COLORREF *prgbKey,
BYTE *pbAlpha, DWORD *pdwFlags )
{
FIXME("(%p,%p,%p,%p): stub!\n", hWnd, prgbKey, pbAlpha, pdwFlags);
return FALSE;
}
/*****************************************************************************
* UpdateLayeredWindow (USER32.@)
*/