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
ca89d7e8
Commit
ca89d7e8
authored
Dec 30, 2007
by
Jeremy White
Committed by
Alexandre Julliard
Dec 31, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintab32: Add modest trace information for tablets.
parent
5d886557
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
wintab.c
dlls/winex11.drv/wintab.c
+1
-0
context.c
dlls/wintab32/context.c
+4
-1
No files found.
dlls/winex11.drv/wintab.c
View file @
ca89d7e8
...
...
@@ -436,6 +436,7 @@ void X11DRV_LoadTabletInfo(HWND hwnddefault)
wine_tsx11_unlock
();
return
;
}
TRACE
(
"XListInputDevices reports %d devices
\n
"
,
num_devices
);
for
(
loop
=
0
;
loop
<
num_devices
;
loop
++
)
{
int
class_loop
;
...
...
dlls/wintab32/context.c
View file @
ca89d7e8
...
...
@@ -367,6 +367,8 @@ static VOID TABLET_BlankPacketData(LPOPENCONTEXT context, LPVOID lpPkt, INT n)
UINT
WINAPI
WTInfoT
(
UINT
wCategory
,
UINT
nIndex
,
LPVOID
lpOutput
,
BOOL
bUnicode
)
{
UINT
result
;
TRACE
(
"(%d, %d, %p, %d)
\n
"
,
wCategory
,
nIndex
,
lpOutput
,
bUnicode
);
if
(
gLoaded
==
FALSE
)
LoadTablet
();
...
...
@@ -409,7 +411,7 @@ UINT WINAPI WTInfoT(UINT wCategory, UINT nIndex, LPVOID lpOutput, BOOL bUnicode)
LOGCONTEXTWtoA
(
&
buf
,
lpOutput
);
}
re
turn
bUnicode
?
sizeof
(
LOGCONTEXTW
)
:
sizeof
(
LOGCONTEXTA
);
re
sult
=
bUnicode
?
sizeof
(
LOGCONTEXTW
)
:
sizeof
(
LOGCONTEXTA
);
}
else
if
(
is_string_field
(
wCategory
,
nIndex
)
&&
!
bUnicode
)
{
...
...
@@ -422,6 +424,7 @@ UINT WINAPI WTInfoT(UINT wCategory, UINT nIndex, LPVOID lpOutput, BOOL bUnicode)
else
result
=
pWTInfoW
(
wCategory
,
nIndex
,
lpOutput
);
TRACE
(
"returns %d
\n
"
,
result
);
return
result
;
}
...
...
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