Commit d0019a60 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

AlignRects stub.

parent b6938952
......@@ -195,9 +195,9 @@ BOOL WINAPI SetThreadDesktop( HANDLE hDesktop )
/***********************************************************************
* RegisterShellHookWindow [USER32.@]
*/
HRESULT WINAPI RegisterShellHookWindow ( DWORD u )
BOOL WINAPI RegisterShellHookWindow ( HWND hWnd )
{
FIXME("0x%08lx stub\n",u);
FIXME("(%p): stub\n", hWnd);
return 0;
}
......@@ -234,6 +234,19 @@ DWORD WINAPI GetAppCompatFlags( HTASK hTask )
/***********************************************************************
* AlignRects (USER32.@)
*/
BOOL WINAPI AlignRects(LPRECT rect, DWORD b, DWORD c, DWORD d)
{
FIXME("(%p, %ld, %ld, %ld): stub\n", rect, b, c, d);
if (rect)
FIXME("rect: [[%ld, %ld], [%ld, %ld]]\n", rect->left, rect->top, rect->right, rect->bottom);
/* Calls OffsetRect */
return FALSE;
}
/***********************************************************************
* USER_489 (USER.489)
*/
LONG WINAPI stub_USER_489(void) { FIXME("stub\n"); return 0; }
......
......@@ -643,6 +643,7 @@
@ stub UnregisterDeviceNotification
# win98/win2k
@ stdcall AlignRects(ptr long long long) AlignRects
@ stdcall AllowSetForegroundWindow (long) AllowSetForegroundWindow
@ stdcall AnimateWindow(long long long) AnimateWindow
@ stdcall DrawMenuBarTemp(long long long long long) DrawMenuBarTemp
......
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