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
b980bbec
Commit
b980bbec
authored
May 16, 2006
by
Eric Pouech
Committed by
Alexandre Julliard
May 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Allow interprocess WM_NCPAINT messages when wParam is 0 or 1.
parent
63b66b95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
message.c
dlls/user/message.c
+9
-2
No files found.
dlls/user/message.c
View file @
b980bbec
...
...
@@ -619,6 +619,11 @@ static size_t pack_message( HWND hwnd, UINT message, WPARAM wparam, LPARAM lpara
case
WM_WINE_MOUSE_LL_HOOK
:
push_data
(
data
,
(
MSLLHOOKSTRUCT
*
)
lparam
,
sizeof
(
MSLLHOOKSTRUCT
)
);
return
0
;
case
WM_NCPAINT
:
if
(
wparam
<=
1
)
return
0
;
FIXME
(
"WM_NCPAINT hdc packing not supported yet
\n
"
);
data
->
count
=
-
1
;
return
0
;
case
WM_PAINT
:
if
(
!
wparam
)
return
0
;
/* fall through */
...
...
@@ -629,7 +634,6 @@ static size_t pack_message( HWND hwnd, UINT message, WPARAM wparam, LPARAM lpara
/* these contain an HDC */
case
WM_ERASEBKGND
:
case
WM_ICONERASEBKGND
:
case
WM_NCPAINT
:
case
WM_CTLCOLORMSGBOX
:
case
WM_CTLCOLOREDIT
:
case
WM_CTLCOLORLISTBOX
:
...
...
@@ -879,6 +883,10 @@ static BOOL unpack_message( HWND hwnd, UINT message, WPARAM *wparam, LPARAM *lpa
case
WM_WINE_MOUSE_LL_HOOK
:
minsize
=
sizeof
(
MSLLHOOKSTRUCT
);
break
;
case
WM_NCPAINT
:
if
(
*
wparam
<=
1
)
return
TRUE
;
FIXME
(
"WM_NCPAINT hdc unpacking not supported
\n
"
);
return
FALSE
;
case
WM_PAINT
:
if
(
!*
wparam
)
return
TRUE
;
/* fall through */
...
...
@@ -889,7 +897,6 @@ static BOOL unpack_message( HWND hwnd, UINT message, WPARAM *wparam, LPARAM *lpa
/* these contain an HDC */
case
WM_ERASEBKGND
:
case
WM_ICONERASEBKGND
:
case
WM_NCPAINT
:
case
WM_CTLCOLORMSGBOX
:
case
WM_CTLCOLOREDIT
:
case
WM_CTLCOLORLISTBOX
:
...
...
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