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
810201cf
Commit
810201cf
authored
Apr 11, 2019
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Apr 11, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintab32: Improve tracing of LOGCONTEXT.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
de8be4a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
22 deletions
+16
-22
context.c
dlls/wintab32/context.c
+16
-22
No files found.
dlls/wintab32/context.c
View file @
810201cf
...
...
@@ -113,28 +113,22 @@ static inline void DUMPPACKET(WTPACKET packet)
static
inline
void
DUMPCONTEXT
(
LOGCONTEXTW
lc
)
{
TRACE
(
"Name: %s, Options: %x, Status: %x, Locks: %x, MsgBase: %x, "
"Device: %x, PktRate: %x, "
"%x%s, %x%s, %x%s, "
"BtnDnMask: %x, BtnUpMask: %x, "
"InOrgX: %i, InOrgY: %i, InOrgZ: %i, "
"InExtX: %i, InExtY: %i, InExtZ: %i, "
"OutOrgX: %i, OutOrgY: %i, OutOrgZ: %i, "
"OutExtX: %i, OutExtY: %i, OutExtZ: %i, "
"SensX: %i, SensY: %i, SensZ: %i, "
"SysMode: %i, "
"SysOrgX: %i, SysOrgY: %i, "
"SysExtX: %i, SysExtY: %i, "
"SysSensX: %i, SysSensY: %i
\n
"
,
wine_dbgstr_w
(
lc
.
lcName
),
lc
.
lcOptions
,
lc
.
lcStatus
,
lc
.
lcLocks
,
lc
.
lcMsgBase
,
lc
.
lcDevice
,
lc
.
lcPktRate
,
lc
.
lcPktData
,
DUMPBITS
(
lc
.
lcPktData
),
lc
.
lcPktMode
,
DUMPBITS
(
lc
.
lcPktMode
),
lc
.
lcMoveMask
,
DUMPBITS
(
lc
.
lcMoveMask
),
lc
.
lcBtnDnMask
,
lc
.
lcBtnUpMask
,
lc
.
lcInOrgX
,
lc
.
lcInOrgY
,
lc
.
lcInOrgZ
,
lc
.
lcInExtX
,
lc
.
lcInExtY
,
lc
.
lcInExtZ
,
lc
.
lcOutOrgX
,
lc
.
lcOutOrgY
,
lc
.
lcOutOrgZ
,
lc
.
lcOutExtX
,
lc
.
lcOutExtY
,
lc
.
lcOutExtZ
,
lc
.
lcSensX
,
lc
.
lcSensY
,
lc
.
lcSensZ
,
lc
.
lcSysMode
,
lc
.
lcSysOrgX
,
lc
.
lcSysOrgY
,
lc
.
lcSysExtX
,
lc
.
lcSysExtY
,
lc
.
lcSysSensX
,
lc
.
lcSysSensY
);
TRACE
(
"Name: %s, Options: %x, Status: %x, Locks: %x, MsgBase: %x, Device: %x
\n
"
,
wine_dbgstr_w
(
lc
.
lcName
),
lc
.
lcOptions
,
lc
.
lcStatus
,
lc
.
lcLocks
,
lc
.
lcMsgBase
,
lc
.
lcDevice
);
TRACE
(
"PktRate %x
\n
"
,
lc
.
lcPktRate
);
TRACE
(
"PktData 0x%04x %s
\n
"
,
lc
.
lcPktData
,
DUMPBITS
(
lc
.
lcPktData
));
TRACE
(
"PktMode 0x%04x %s
\n
"
,
lc
.
lcPktMode
,
DUMPBITS
(
lc
.
lcPktMode
));
TRACE
(
"MovMask 0x%04x %s
\n
"
,
lc
.
lcMoveMask
,
DUMPBITS
(
lc
.
lcMoveMask
));
TRACE
(
"BtnDnMask: %x, BtnUpMask: %x
\n
"
,
lc
.
lcBtnDnMask
,
lc
.
lcBtnUpMask
);
TRACE
(
"InOrgX: %i, InOrgY: %i, InOrgZ: %i
\n
"
,
lc
.
lcInOrgX
,
lc
.
lcInOrgY
,
lc
.
lcInOrgZ
);
TRACE
(
"InExtX: %i, InExtY: %i, InExtZ: %i
\n
"
,
lc
.
lcInExtX
,
lc
.
lcInExtY
,
lc
.
lcInExtZ
);
TRACE
(
"OutOrgX: %i, OutOrgY: %i, OutOrgZ: %i
\n
"
,
lc
.
lcOutOrgX
,
lc
.
lcOutOrgY
,
lc
.
lcOutOrgZ
);
TRACE
(
"OutExtX: %i, OutExtY: %i, OutExtZ: %i
\n
"
,
lc
.
lcOutExtX
,
lc
.
lcOutExtY
,
lc
.
lcOutExtZ
);
TRACE
(
"SensX: %i, SensY: %i, SensZ: %i
\n
"
,
lc
.
lcSensX
,
lc
.
lcSensY
,
lc
.
lcSensZ
);
TRACE
(
"SysMode: %i
\n
"
,
lc
.
lcSysMode
);
TRACE
(
"SysOrgX: %i, SysOrgY: %i
\n
"
,
lc
.
lcSysOrgX
,
lc
.
lcSysOrgY
);
TRACE
(
"SysExtX: %i, SysExtY: %i
\n
"
,
lc
.
lcSysExtX
,
lc
.
lcSysExtY
);
TRACE
(
"SysSensX: %i, SysSensY: %i
\n
"
,
lc
.
lcSysSensX
,
lc
.
lcSysSensY
);
}
...
...
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