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
d3e324f8
Commit
d3e324f8
authored
Oct 08, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintab32: Win64 printf format warning fixes.
parent
51ca8e8e
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
6 deletions
+5
-6
Makefile.in
dlls/wintab32/Makefile.in
+0
-1
context.c
dlls/wintab32/context.c
+2
-2
manager.c
dlls/wintab32/manager.c
+1
-1
wintab16.c
dlls/wintab32/wintab16.c
+1
-1
wintab32.c
dlls/wintab32/wintab32.c
+1
-1
No files found.
dlls/wintab32/Makefile.in
View file @
d3e324f8
...
...
@@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE
=
wintab32.dll
IMPORTLIB
=
libwintab32.
$(IMPLIBEXT)
IMPORTS
=
user32 kernel32
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
context.c
\
...
...
dlls/wintab32/context.c
View file @
d3e324f8
...
...
@@ -68,7 +68,7 @@ static char* DUMPBITS(int x, char* buf)
static
inline
void
DUMPPACKET
(
WTPACKET
packet
)
{
TRACE
(
"pkContext: %p pkStatus: 0x%x pkTime : 0x%x pkChanged: 0x%x pkSerialNumber: 0x%x pkCursor : %i pkButtons: %x pkX: %
li pkY: %li pkZ: %l
i pkNormalPressure: %i pkTangentPressure: %i pkOrientation: (%i,%i,%i) pkRotation: (%i,%i,%i)
\n
"
,
TRACE
(
"pkContext: %p pkStatus: 0x%x pkTime : 0x%x pkChanged: 0x%x pkSerialNumber: 0x%x pkCursor : %i pkButtons: %x pkX: %
i pkY: %i pkZ: %
i pkNormalPressure: %i pkTangentPressure: %i pkOrientation: (%i,%i,%i) pkRotation: (%i,%i,%i)
\n
"
,
packet
.
pkContext
,
(
UINT
)
packet
.
pkStatus
,
(
UINT
)
packet
.
pkTime
,
...
...
@@ -94,7 +94,7 @@ static inline void DUMPCONTEXT(LOGCONTEXTA lc)
CHAR
bits1
[
100
];
CHAR
bits2
[
100
];
sprintf
(
mmsg
,
"%s, %x, %x, %x, %x, %x, %x, %x%s, %x%s, %x%s, %x, %x, %i, %i, %i, %
li ,%li, %li, %li, %li, %li,%li, %li, %li, %li, %li, %li, %i, %i, %i, %i, %i %li %l
i"
,
sprintf
(
mmsg
,
"%s, %x, %x, %x, %x, %x, %x, %x%s, %x%s, %x%s, %x, %x, %i, %i, %i, %
i ,%i, %i, %i, %i, %i,%i, %i, %i, %i, %i, %i, %i, %i, %i, %i, %i %i %
i"
,
debugstr_a
(
lc
.
lcName
),
lc
.
lcOptions
,
lc
.
lcStatus
,
lc
.
lcLocks
,
lc
.
lcMsgBase
,
lc
.
lcDevice
,
lc
.
lcPktRate
,
(
UINT
)
lc
.
lcPktData
,
DUMPBITS
(
lc
.
lcPktData
,
bits
),
(
UINT
)
lc
.
lcPktMode
,
DUMPBITS
(
lc
.
lcPktMode
,
bits1
),
(
UINT
)
lc
.
lcMoveMask
,
...
...
dlls/wintab32/manager.c
View file @
d3e324f8
...
...
@@ -245,7 +245,7 @@ BOOL WINAPI WTMgrCsrButtonMap(HMGR hMgr, UINT wCursor,
BOOL
WINAPI
WTMgrCsrPressureBtnMarks
(
HMGR
hMgr
,
UINT
wCsr
,
DWORD
dwNMarks
,
DWORD
dwTMarks
)
{
FIXME
(
"(%p, %u, %
lu, %l
u): stub
\n
"
,
hMgr
,
wCsr
,
dwNMarks
,
dwTMarks
);
FIXME
(
"(%p, %u, %
u, %
u): stub
\n
"
,
hMgr
,
wCsr
,
dwNMarks
,
dwTMarks
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
dlls/wintab32/wintab16.c
View file @
d3e324f8
...
...
@@ -502,7 +502,7 @@ BOOL16 WINAPI WTMgrCsrButtonMap16(HMGR16 hMgr, UINT16 wCursor,
BOOL16
WINAPI
WTMgrCsrPressureBtnMarks16
(
HMGR16
hMgr
,
UINT16
wCsr
,
DWORD
dwNMarks
,
DWORD
dwTMarks
)
{
FIXME
(
"(0x%04hx, %hu, %
lu, %l
u): stub
\n
"
,
hMgr
,
wCsr
,
dwNMarks
,
dwTMarks
);
FIXME
(
"(0x%04hx, %hu, %
u, %
u): stub
\n
"
,
hMgr
,
wCsr
,
dwNMarks
,
dwTMarks
);
return
FALSE
;
}
...
...
dlls/wintab32/wintab32.c
View file @
d3e324f8
...
...
@@ -68,7 +68,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpReserved)
static
const
WCHAR
name
[]
=
{
'T'
,
'a'
,
'b'
,
'l'
,
'e'
,
't'
,
0
};
HMODULE
hx11drv
;
TRACE
(
"%p, %
l
x, %p
\n
"
,
hInstDLL
,
fdwReason
,
lpReserved
);
TRACE
(
"%p, %x, %p
\n
"
,
hInstDLL
,
fdwReason
,
lpReserved
);
switch
(
fdwReason
)
{
case
DLL_PROCESS_ATTACH
:
...
...
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