Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
d0019a60
Commit
d0019a60
authored
Jan 13, 2003
by
Robert Shearman
Committed by
Alexandre Julliard
Jan 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AlignRects stub.
parent
b6938952
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
misc.c
dlls/user/misc.c
+15
-2
user32.spec
dlls/user/user32.spec
+1
-0
No files found.
dlls/user/misc.c
View file @
d0019a60
...
...
@@ -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
;
}
...
...
dlls/user/user32.spec
View file @
d0019a60
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment