mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:21:14 +00:00
wintab: Consistently use %I printf format for ULONG_PTR values.
This commit is contained in:
parent
3925f42452
commit
dae4031a28
1 changed files with 3 additions and 3 deletions
|
@ -329,7 +329,7 @@ BOOL16 WINAPI WTMgrClose16(HMGR16 hMgr)
|
||||||
*/
|
*/
|
||||||
BOOL16 WINAPI WTMgrContextEnum16(HMGR16 hMgr, WTENUMPROC16 lpEnumFunc, LPARAM lParam)
|
BOOL16 WINAPI WTMgrContextEnum16(HMGR16 hMgr, WTENUMPROC16 lpEnumFunc, LPARAM lParam)
|
||||||
{
|
{
|
||||||
FIXME("(0x%04hx, %p, %ld): stub\n", hMgr, lpEnumFunc, lParam);
|
FIXME("(0x%04hx, %p, %Ix): stub\n", hMgr, lpEnumFunc, lParam);
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
@ -444,7 +444,7 @@ BOOL16 WINAPI WTMgrPacketUnhook16(HWTHOOK16 hHook)
|
||||||
LRESULT WINAPI WTMgrPacketHookDefProc16(INT16 nCode, WPARAM16 wParam,
|
LRESULT WINAPI WTMgrPacketHookDefProc16(INT16 nCode, WPARAM16 wParam,
|
||||||
LPARAM lParam, LPWTHOOKPROC16 lplpFunc)
|
LPARAM lParam, LPWTHOOKPROC16 lplpFunc)
|
||||||
{
|
{
|
||||||
FIXME("(%hd, %hu, %lu, %p): stub\n", nCode, wParam, lParam, lplpFunc);
|
FIXME("(%hd, %hu, %Iu, %p): stub\n", nCode, wParam, lParam, lplpFunc);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -455,7 +455,7 @@ LRESULT WINAPI WTMgrPacketHookDefProc16(INT16 nCode, WPARAM16 wParam,
|
||||||
LRESULT WINAPI WTMgrPacketHookNext16(HWTHOOK16 hHook, INT16 nCode,
|
LRESULT WINAPI WTMgrPacketHookNext16(HWTHOOK16 hHook, INT16 nCode,
|
||||||
WPARAM16 wParam, LPARAM lParam)
|
WPARAM16 wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
FIXME("(0x%04hx, %hd, %hu, %lu): stub\n", hHook, nCode, wParam, lParam);
|
FIXME("(0x%04hx, %hd, %hu, %Iu): stub\n", hHook, nCode, wParam, lParam);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue