Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
54ae4735
Commit
54ae4735
authored
Oct 24, 1998
by
Kai Morich
Committed by
Alexandre Julliard
Oct 24, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added FIXME message in PostMessage32x if parameters are truncated
when calling PostMessage16.
parent
4a546903
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
message.c
windows/message.c
+12
-4
No files found.
windows/message.c
View file @
54ae4735
...
...
@@ -1113,8 +1113,12 @@ BOOL16 WINAPI PostMessage16( HWND16 hwnd, UINT16 message, WPARAM16 wParam,
BOOL32
WINAPI
PostMessage32A
(
HWND32
hwnd
,
UINT32
message
,
WPARAM32
wParam
,
LPARAM
lParam
)
{
/* FIXME */
return
PostMessage16
(
hwnd
,
message
,
wParam
,
lParam
);
/* FIXME */
if
(
message
&
0xffff0000
)
FIXME
(
msg
,
"message is truncated from %d to %d
\n
"
,
message
,
message
&
0xffff
);
if
(
wParam
&
0xffff0000
)
FIXME
(
msg
,
"wParam is truncated from %d to %d
\n
"
,
wParam
,
wParam
&
0xffff
);
return
PostMessage16
(
hwnd
,
message
,
wParam
,
lParam
);
}
...
...
@@ -1124,8 +1128,12 @@ BOOL32 WINAPI PostMessage32A( HWND32 hwnd, UINT32 message, WPARAM32 wParam,
BOOL32
WINAPI
PostMessage32W
(
HWND32
hwnd
,
UINT32
message
,
WPARAM32
wParam
,
LPARAM
lParam
)
{
/* FIXME */
return
PostMessage16
(
hwnd
,
message
,
wParam
,
lParam
);
/* FIXME */
if
(
message
&
0xffff0000
)
FIXME
(
msg
,
"message is truncated from %d to %d
\n
"
,
message
,
message
&
0xffff
);
if
(
wParam
&
0xffff0000
)
FIXME
(
msg
,
"wParam is truncated from %d to %d
\n
"
,
wParam
,
wParam
&
0xffff
);
return
PostMessage16
(
hwnd
,
message
,
wParam
,
lParam
);
}
...
...
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