diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec index 417b93e..2bc74bb 100644 --- a/dlls/user32/user32.spec +++ b/dlls/user32/user32.spec @@ -304,7 +304,7 @@ @ stdcall GetKeyboardType(long) @ stdcall GetLastActivePopup(long) @ stdcall GetLastInputInfo(ptr) -# @ stub GetLayeredWindowAttributes +@ stdcall GetLayeredWindowAttributes(ptr long long long) # @ stub GetListBoxInfo @ stdcall GetMenu(long) @ stdcall GetMenuBarInfo(long long long ptr) diff --git a/dlls/user32/win.c b/dlls/user32/win.c index 72f3cfc..e9d3306 100644 --- a/dlls/user32/win.c +++ b/dlls/user32/win.c @@ -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,0x%.8x,%d,%d): stub!\n", hWnd, *prgbKey, *pbAlpha, *pdwFlags); + return TRUE; +} + +/***************************************************************************** * UpdateLayeredWindow (USER32.@) */ BOOL WINAPI UpdateLayeredWindow( HWND hwnd, HDC hdcDst, POINT *pptDst, SIZE *psize,