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
c4245a7f
Commit
c4245a7f
authored
Aug 07, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Fixed the return value of DispatchMessageA/W.
parent
197f4059
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
message.c
dlls/user32/message.c
+4
-4
winuser.h
include/winuser.h
+2
-2
No files found.
dlls/user32/message.c
View file @
c4245a7f
...
...
@@ -2961,10 +2961,10 @@ BOOL WINAPI TranslateMessage( const MSG *msg )
*
* See DispatchMessageW.
*/
L
ONG
WINAPI
DispatchMessageA
(
const
MSG
*
msg
)
L
RESULT
WINAPI
DispatchMessageA
(
const
MSG
*
msg
)
{
WND
*
wndPtr
;
L
ONG
retval
;
L
RESULT
retval
;
WNDPROC
winproc
;
/* Process timer messages */
...
...
@@ -3033,10 +3033,10 @@ LONG WINAPI DispatchMessageA( const MSG* msg )
* ECMA-234, Win32
*
*/
L
ONG
WINAPI
DispatchMessageW
(
const
MSG
*
msg
)
L
RESULT
WINAPI
DispatchMessageW
(
const
MSG
*
msg
)
{
WND
*
wndPtr
;
L
ONG
retval
;
L
RESULT
retval
;
WNDPROC
winproc
;
/* Process timer messages */
...
...
include/winuser.h
View file @
c4245a7f
...
...
@@ -4475,8 +4475,8 @@ INT_PTR WINAPI DialogBoxIndirectParamW(HINSTANCE,LPCDLGTEMPLATEW,HWND,DLGPROC,
INT_PTR
WINAPI
DialogBoxParamA
(
HINSTANCE
,
LPCSTR
,
HWND
,
DLGPROC
,
LPARAM
);
INT_PTR
WINAPI
DialogBoxParamW
(
HINSTANCE
,
LPCWSTR
,
HWND
,
DLGPROC
,
LPARAM
);
#define DialogBoxParam WINELIB_NAME_AW(DialogBoxParam)
L
ONG
WINAPI
DispatchMessageA
(
const
MSG
*
);
L
ONG
WINAPI
DispatchMessageW
(
const
MSG
*
);
L
RESULT
WINAPI
DispatchMessageA
(
const
MSG
*
);
L
RESULT
WINAPI
DispatchMessageW
(
const
MSG
*
);
#define DispatchMessage WINELIB_NAME_AW(DispatchMessage)
INT
WINAPI
DlgDirListA
(
HWND
,
LPSTR
,
INT
,
INT
,
UINT
);
INT
WINAPI
DlgDirListW
(
HWND
,
LPWSTR
,
INT
,
INT
,
UINT
);
...
...
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