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
99d9e0f6
Commit
99d9e0f6
authored
Feb 11, 2011
by
Austin English
Committed by
Alexandre Julliard
Feb 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Trace APPBARDATA struct members based on message type (Valgrind).
parent
d52f95ce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
3 deletions
+30
-3
appbar.c
dlls/shell32/appbar.c
+30
-3
No files found.
dlls/shell32/appbar.c
View file @
99d9e0f6
...
...
@@ -74,9 +74,36 @@ UINT_PTR WINAPI SHAppBarMessage(DWORD msg, PAPPBARDATA data)
UINT_PTR
ret
=
0
;
TRACE
(
"msg=%d, data={cb=%d, hwnd=%p, callback=%x, edge=%d, rc=%s, lparam=%lx}
\n
"
,
msg
,
data
->
cbSize
,
data
->
hWnd
,
data
->
uCallbackMessage
,
data
->
uEdge
,
wine_dbgstr_rect
(
&
data
->
rc
),
data
->
lParam
);
TRACE
(
"msg=%d, data={cb=%d, hwnd=%p}
\n
"
,
msg
,
data
->
cbSize
,
data
->
hWnd
);
/* These members are message dependent */
switch
(
msg
)
{
case
ABM_NEW
:
TRACE
(
"callback: %x
\n
"
,
data
->
uCallbackMessage
);
break
;
case
ABM_GETAUTOHIDEBAR
:
TRACE
(
"edge: %d
\n
"
,
data
->
uEdge
);
break
;
case
ABM_QUERYPOS
:
case
ABM_SETPOS
:
TRACE
(
"edge: %d, rc: %s
\n
"
,
data
->
uEdge
,
wine_dbgstr_rect
(
&
data
->
rc
));
break
;
case
ABM_GETTASKBARPOS
:
TRACE
(
"rc: %s
\n
"
,
wine_dbgstr_rect
(
&
data
->
rc
));
break
;
case
ABM_SETAUTOHIDEBAR
:
TRACE
(
"edge: %d, lParam: %lx
\n
"
,
data
->
uEdge
,
data
->
lParam
);
break
;
default:
FIXME
(
"unknown msg: %d
\n
"
,
msg
);
break
;
}
if
(
data
->
cbSize
<
sizeof
(
APPBARDATA
))
{
...
...
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