user32: Add stub for GetLayeredWindowAttributes.
This commit is contained in:
parent
368d935350
commit
a467feae39
|
@ -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)
|
||||
|
|
|
@ -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.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue