AlignRects stub.
This commit is contained in:
parent
b69389520c
commit
d0019a6040
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -233,6 +233,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)
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue