Commit a467feae authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

user32: Add stub for GetLayeredWindowAttributes.

parent 368d9353
......@@ -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)
......
......@@ -3084,6 +3084,16 @@ BOOL WINAPI SetLayeredWindowAttributes( HWND hWnd, COLORREF rgbKey,
}
/*****************************************************************************
* 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.@)
*/
BOOL WINAPI UpdateLayeredWindow( HWND hwnd, HDC hdcDst, POINT *pptDst, SIZE *psize,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment