Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
41dd56cb
Commit
41dd56cb
authored
Sep 29, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Sep 29, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
"One liners" printf format warning fixes for the migration of DWORD/LONG/ULONG from long to int.
parent
705b5a00
Show whitespace changes
Inline
Side-by-side
Showing
34 changed files
with
34 additions
and
34 deletions
+34
-34
avicap32_main.c
dlls/avicap32/avicap32_main.c
+1
-1
compstui_main.c
dlls/compstui/compstui_main.c
+1
-1
crtdll_main.c
dlls/crtdll/crtdll_main.c
+1
-1
cryptdll.c
dlls/cryptdll/cryptdll.c
+1
-1
cryptnet_main.c
dlls/cryptnet/cryptnet_main.c
+1
-1
main.c
dlls/dpnhpast/main.c
+1
-1
gphoto2_main.c
dlls/gphoto2.ds/gphoto2_main.c
+1
-1
hlink.c
dlls/hlink/tests/hlink.c
+1
-1
localspl_main.c
dlls/localspl/localspl_main.c
+1
-1
mmdevldr.c
dlls/mmdevldr.vxd/mmdevldr.c
+1
-1
monodebg.c
dlls/monodebg.vxd/monodebg.c
+1
-1
mprapi.c
dlls/mprapi/mprapi.c
+1
-1
msisys.c
dlls/msisys.ocx/msisys.c
+1
-1
msnet_main.c
dlls/msnet32/msnet_main.c
+1
-1
debug.c
dlls/msvcrtd/tests/debug.c
+1
-1
ntdsapi.c
dlls/ntdsapi/ntdsapi.c
+1
-1
odbccp32.c
dlls/odbccp32/odbccp32.c
+1
-1
oledlg_main.c
dlls/oledlg/oledlg_main.c
+1
-1
sane_main.c
dlls/sane.ds/sane_main.c
+1
-1
sensapi.c
dlls/sensapi/sensapi.c
+1
-1
main.c
dlls/snmpapi/main.c
+1
-1
svrapi_main.c
dlls/svrapi/svrapi_main.c
+1
-1
twain32_main.c
dlls/twain_32/twain32_main.c
+1
-1
userenv_main.c
dlls/userenv/userenv_main.c
+1
-1
vdhcp.c
dlls/vdhcp.vxd/vdhcp.c
+1
-1
vnbt.c
dlls/vnbt.vxd/vnbt.c
+1
-1
vnetbios.c
dlls/vnetbios.vxd/vnetbios.c
+1
-1
vtdapi.c
dlls/vtdapi.vxd/vtdapi.c
+1
-1
joystick.c
dlls/winmm/joystick/joystick.c
+1
-1
expand.c
programs/expand/expand.c
+1
-1
desktop.c
programs/explorer/desktop.c
+1
-1
msiexec.c
programs/msiexec/msiexec.c
+1
-1
main.c
programs/uninstaller/main.c
+1
-1
hash.c
tools/widl/hash.c
+1
-1
No files found.
dlls/avicap32/avicap32_main.c
View file @
41dd56cb
...
@@ -69,7 +69,7 @@ HWND VFWAPI capCreateCaptureWindowW(LPCWSTR lpszWindowName, DWORD dwStyle, INT x
...
@@ -69,7 +69,7 @@ HWND VFWAPI capCreateCaptureWindowW(LPCWSTR lpszWindowName, DWORD dwStyle, INT x
INT
y
,
INT
nWidth
,
INT
nHeight
,
HWND
hWnd
,
INT
y
,
INT
nWidth
,
INT
nHeight
,
HWND
hWnd
,
INT
nID
)
INT
nID
)
{
{
FIXME
(
"%s, %08
l
x, %08x, %08x, %08x, %08x, %p, %08x
\n
"
,
FIXME
(
"%s, %08x, %08x, %08x, %08x, %08x, %p, %08x
\n
"
,
debugstr_w
(
lpszWindowName
),
dwStyle
,
debugstr_w
(
lpszWindowName
),
dwStyle
,
x
,
y
,
nWidth
,
nHeight
,
hWnd
,
nID
);
x
,
y
,
nWidth
,
nHeight
,
hWnd
,
nID
);
return
0
;
return
0
;
...
...
dlls/compstui/compstui_main.c
View file @
41dd56cb
...
@@ -41,7 +41,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(compstui);
...
@@ -41,7 +41,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(compstui);
*/
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
{
TRACE
(
"(%p, %
l
d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
switch
(
fdwReason
)
{
{
...
...
dlls/crtdll/crtdll_main.c
View file @
41dd56cb
...
@@ -86,7 +86,7 @@ static void convert_struct_stat( struct crtdll_stat *dst, const struct _stat *sr
...
@@ -86,7 +86,7 @@ static void convert_struct_stat( struct crtdll_stat *dst, const struct _stat *sr
*/
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
{
TRACE
(
"(%p,%
l
d,%p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p,%d,%p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
if
(
fdwReason
==
DLL_PROCESS_ATTACH
)
if
(
fdwReason
==
DLL_PROCESS_ATTACH
)
{
{
...
...
dlls/cryptdll/cryptdll.c
View file @
41dd56cb
...
@@ -29,7 +29,7 @@ HMODULE CRYPTDLL_hModule = 0;
...
@@ -29,7 +29,7 @@ HMODULE CRYPTDLL_hModule = 0;
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
{
TRACE
(
"%p,%
l
x,%p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"%p,%x,%p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
case
DLL_WINE_PREATTACH
:
...
...
dlls/cryptnet/cryptnet_main.c
View file @
41dd56cb
...
@@ -27,7 +27,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(cryptnet);
...
@@ -27,7 +27,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(cryptnet);
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
{
TRACE
(
"(0x%p, %
l
d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"(0x%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
case
DLL_WINE_PREATTACH
:
...
...
dlls/dpnhpast/main.c
View file @
41dd56cb
...
@@ -34,7 +34,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(dpnhpast);
...
@@ -34,7 +34,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(dpnhpast);
*/
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
{
TRACE
(
"(%p, %
l
d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
if
(
fdwReason
==
DLL_PROCESS_ATTACH
)
if
(
fdwReason
==
DLL_PROCESS_ATTACH
)
{
{
...
...
dlls/gphoto2.ds/gphoto2_main.c
View file @
41dd56cb
...
@@ -36,7 +36,7 @@ HINSTANCE GPHOTO2_instance;
...
@@ -36,7 +36,7 @@ HINSTANCE GPHOTO2_instance;
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
{
TRACE
(
"%p,%
l
x,%p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"%p,%x,%p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
switch
(
fdwReason
)
{
{
...
...
dlls/hlink/tests/hlink.c
View file @
41dd56cb
...
@@ -56,7 +56,7 @@ static void test_HlinkIsShortcut(void)
...
@@ -56,7 +56,7 @@ static void test_HlinkIsShortcut(void)
for
(
i
=
0
;
i
<
sizeof
(
shortcut_test
)
/
sizeof
(
shortcut_test
[
0
]);
i
++
)
{
for
(
i
=
0
;
i
<
sizeof
(
shortcut_test
)
/
sizeof
(
shortcut_test
[
0
]);
i
++
)
{
hres
=
HlinkIsShortcut
(
shortcut_test
[
i
].
file
);
hres
=
HlinkIsShortcut
(
shortcut_test
[
i
].
file
);
ok
(
hres
==
shortcut_test
[
i
].
hres
,
"[%d] HlinkIsShortcut returned %08
lx, expected %08l
x
\n
"
,
ok
(
hres
==
shortcut_test
[
i
].
hres
,
"[%d] HlinkIsShortcut returned %08
x, expected %08
x
\n
"
,
i
,
hres
,
shortcut_test
[
i
].
hres
);
i
,
hres
,
shortcut_test
[
i
].
hres
);
}
}
}
}
...
...
dlls/localspl/localspl_main.c
View file @
41dd56cb
...
@@ -45,7 +45,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(localspl);
...
@@ -45,7 +45,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(localspl);
*/
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
{
TRACE
(
"(%p, %
l
d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
switch
(
fdwReason
)
{
{
...
...
dlls/mmdevldr.vxd/mmdevldr.c
View file @
41dd56cb
...
@@ -37,7 +37,7 @@ BOOL WINAPI MMDEVLDR_DeviceIoControl(DWORD dwIoControlCode,
...
@@ -37,7 +37,7 @@ BOOL WINAPI MMDEVLDR_DeviceIoControl(DWORD dwIoControlCode,
LPDWORD
lpcbBytesReturned
,
LPDWORD
lpcbBytesReturned
,
LPOVERLAPPED
lpOverlapped
)
LPOVERLAPPED
lpOverlapped
)
{
{
FIXME
(
"(%
ld,%p,%ld,%p,%l
d,%p,%p): stub
\n
"
,
FIXME
(
"(%
d,%p,%d,%p,%
d,%p,%p): stub
\n
"
,
dwIoControlCode
,
dwIoControlCode
,
lpvInBuffer
,
cbInBuffer
,
lpvInBuffer
,
cbInBuffer
,
lpvOutBuffer
,
cbOutBuffer
,
lpvOutBuffer
,
cbOutBuffer
,
...
...
dlls/monodebg.vxd/monodebg.c
View file @
41dd56cb
...
@@ -46,7 +46,7 @@ BOOL WINAPI MONODEBG_DeviceIoControl(DWORD dwIoControlCode,
...
@@ -46,7 +46,7 @@ BOOL WINAPI MONODEBG_DeviceIoControl(DWORD dwIoControlCode,
ERR
(
"%s
\n
"
,
debugstr_a
(
lpvInBuffer
));
ERR
(
"%s
\n
"
,
debugstr_a
(
lpvInBuffer
));
break
;
break
;
default:
default:
FIXME
(
"(%
ld,%p,%ld,%p,%l
d,%p,%p): stub
\n
"
,
FIXME
(
"(%
d,%p,%d,%p,%
d,%p,%p): stub
\n
"
,
dwIoControlCode
,
dwIoControlCode
,
lpvInBuffer
,
cbInBuffer
,
lpvInBuffer
,
cbInBuffer
,
lpvOutBuffer
,
cbOutBuffer
,
lpvOutBuffer
,
cbOutBuffer
,
...
...
dlls/mprapi/mprapi.c
View file @
41dd56cb
...
@@ -30,7 +30,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(mprapi);
...
@@ -30,7 +30,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(mprapi);
*/
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
reserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
reserved
)
{
{
TRACE
(
"(%p, %
l
d, %p)
\n
"
,
hinst
,
reason
,
reserved
);
TRACE
(
"(%p, %d, %p)
\n
"
,
hinst
,
reason
,
reserved
);
switch
(
reason
)
switch
(
reason
)
{
{
...
...
dlls/msisys.ocx/msisys.c
View file @
41dd56cb
...
@@ -60,7 +60,7 @@ BOOL WINAPI DllMain(
...
@@ -60,7 +60,7 @@ BOOL WINAPI DllMain(
DWORD
fdwReason
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
LPVOID
lpvReserved
)
{
{
TRACE
(
"(%p,%
l
d,%p)
\n
"
,
hInstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p,%d,%p)
\n
"
,
hInstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
switch
(
fdwReason
)
{
{
...
...
dlls/msnet32/msnet_main.c
View file @
41dd56cb
...
@@ -46,6 +46,6 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
...
@@ -46,6 +46,6 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
*/
*/
LONG
WINAPI
MSNET32_57
(
LONG
a1
,
LONG
a2
,
LPVOID
a3
,
LONG
a4
,
LPVOID
a5
)
LONG
WINAPI
MSNET32_57
(
LONG
a1
,
LONG
a2
,
LPVOID
a3
,
LONG
a4
,
LPVOID
a5
)
{
{
FIXME
(
"(0x%04
lx 0x%04lx %p 0x%04l
x %p): stub
\n
"
,
a1
,
a2
,
a3
,
a4
,
a5
);
FIXME
(
"(0x%04
x 0x%04x %p 0x%04
x %p): stub
\n
"
,
a1
,
a2
,
a3
,
a4
,
a5
);
return
-
1
;
/* FAILURE */
return
-
1
;
/* FAILURE */
}
}
dlls/msvcrtd/tests/debug.c
View file @
41dd56cb
...
@@ -41,7 +41,7 @@ static int init_functions(void)
...
@@ -41,7 +41,7 @@ static int init_functions(void)
HMODULE
hModule
=
LoadLibraryA
(
"msvcrtd.dll"
);
HMODULE
hModule
=
LoadLibraryA
(
"msvcrtd.dll"
);
if
(
!
hModule
)
{
if
(
!
hModule
)
{
trace
(
"LoadLibraryA failed to load msvcrtd.dll with GLE=%
l
d
\n
"
,
GetLastError
());
trace
(
"LoadLibraryA failed to load msvcrtd.dll with GLE=%d
\n
"
,
GetLastError
());
return
FALSE
;
return
FALSE
;
}
}
...
...
dlls/ntdsapi/ntdsapi.c
View file @
41dd56cb
...
@@ -31,7 +31,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(ntdsapi);
...
@@ -31,7 +31,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(ntdsapi);
*/
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
reserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
reserved
)
{
{
TRACE
(
"(%p, %
l
d, %p)
\n
"
,
hinst
,
reason
,
reserved
);
TRACE
(
"(%p, %d, %p)
\n
"
,
hinst
,
reason
,
reserved
);
switch
(
reason
)
switch
(
reason
)
{
{
...
...
dlls/odbccp32/odbccp32.c
View file @
41dd56cb
...
@@ -36,7 +36,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(odbc);
...
@@ -36,7 +36,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(odbc);
BOOL
WINAPI
ODBCCPlApplet
(
LONG
i
,
LONG
j
,
LONG
*
p1
,
LONG
*
p2
)
BOOL
WINAPI
ODBCCPlApplet
(
LONG
i
,
LONG
j
,
LONG
*
p1
,
LONG
*
p2
)
{
{
FIXME
(
"( %
ld %l
d %p %p) : stub!
\n
"
,
i
,
j
,
p1
,
p2
);
FIXME
(
"( %
d %
d %p %p) : stub!
\n
"
,
i
,
j
,
p1
,
p2
);
return
FALSE
;
return
FALSE
;
}
}
...
...
dlls/oledlg/oledlg_main.c
View file @
41dd56cb
...
@@ -39,7 +39,7 @@ HINSTANCE OLEDLG_hInstance = 0;
...
@@ -39,7 +39,7 @@ HINSTANCE OLEDLG_hInstance = 0;
*/
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
fImpLoad
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
fImpLoad
)
{
{
TRACE
(
"%p 0x%
l
x %p
\n
"
,
hinstDLL
,
fdwReason
,
fImpLoad
);
TRACE
(
"%p 0x%x %p
\n
"
,
hinstDLL
,
fdwReason
,
fImpLoad
);
switch
(
fdwReason
)
{
switch
(
fdwReason
)
{
case
DLL_PROCESS_ATTACH
:
case
DLL_PROCESS_ATTACH
:
...
...
dlls/sane.ds/sane_main.c
View file @
41dd56cb
...
@@ -35,7 +35,7 @@ HINSTANCE SANE_instance;
...
@@ -35,7 +35,7 @@ HINSTANCE SANE_instance;
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
{
TRACE
(
"%p,%
l
x,%p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"%p,%x,%p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
switch
(
fdwReason
)
{
{
...
...
dlls/sensapi/sensapi.c
View file @
41dd56cb
...
@@ -48,7 +48,7 @@ HMODULE SENSAPI_hModule = 0;
...
@@ -48,7 +48,7 @@ HMODULE SENSAPI_hModule = 0;
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
{
TRACE
(
"%p,%
l
x,%p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"%p,%x,%p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
switch
(
fdwReason
)
{
case
DLL_PROCESS_ATTACH
:
case
DLL_PROCESS_ATTACH
:
...
...
dlls/snmpapi/main.c
View file @
41dd56cb
...
@@ -36,7 +36,7 @@ BOOL WINAPI DllMain(
...
@@ -36,7 +36,7 @@ BOOL WINAPI DllMain(
DWORD
fdwReason
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
LPVOID
lpvReserved
)
{
{
TRACE
(
"(%p,%
l
d,%p)
\n
"
,
hInstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p,%d,%p)
\n
"
,
hInstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
case
DLL_WINE_PREATTACH
:
...
...
dlls/svrapi/svrapi_main.c
View file @
41dd56cb
...
@@ -35,7 +35,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(svrapi);
...
@@ -35,7 +35,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(svrapi);
*/
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
fImpLoad
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
fImpLoad
)
{
{
TRACE
(
"%p 0x%
l
x %p
\n
"
,
hinstDLL
,
fdwReason
,
fImpLoad
);
TRACE
(
"%p 0x%x %p
\n
"
,
hinstDLL
,
fdwReason
,
fImpLoad
);
switch
(
fdwReason
)
{
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
case
DLL_WINE_PREATTACH
:
...
...
dlls/twain_32/twain32_main.c
View file @
41dd56cb
...
@@ -45,7 +45,7 @@ static activeDS *TWAIN_LookupSource (pTW_IDENTITY pDest)
...
@@ -45,7 +45,7 @@ static activeDS *TWAIN_LookupSource (pTW_IDENTITY pDest)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
{
TRACE
(
"%p,%
l
x,%p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"%p,%x,%p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
switch
(
fdwReason
)
{
{
...
...
dlls/userenv/userenv_main.c
View file @
41dd56cb
...
@@ -31,7 +31,7 @@ WINE_DEFAULT_DEBUG_CHANNEL( userenv );
...
@@ -31,7 +31,7 @@ WINE_DEFAULT_DEBUG_CHANNEL( userenv );
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
{
TRACE
(
"%p %
l
d %p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"%p %d %p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
switch
(
fdwReason
)
{
{
...
...
dlls/vdhcp.vxd/vdhcp.c
View file @
41dd56cb
...
@@ -62,7 +62,7 @@ BOOL WINAPI VDHCP_DeviceIoControl(DWORD dwIoControlCode, LPVOID lpvInBuffer,
...
@@ -62,7 +62,7 @@ BOOL WINAPI VDHCP_DeviceIoControl(DWORD dwIoControlCode, LPVOID lpvInBuffer,
break
;
break
;
default:
default:
FIXME
(
"(%
ld,%p,%ld,%p,%l
d,%p,%p): stub
\n
"
,
FIXME
(
"(%
d,%p,%d,%p,%
d,%p,%p): stub
\n
"
,
dwIoControlCode
,
dwIoControlCode
,
lpvInBuffer
,
cbInBuffer
,
lpvInBuffer
,
cbInBuffer
,
lpvOutBuffer
,
cbOutBuffer
,
lpvOutBuffer
,
cbOutBuffer
,
...
...
dlls/vnbt.vxd/vnbt.c
View file @
41dd56cb
...
@@ -155,7 +155,7 @@ BOOL WINAPI VNBT_DeviceIoControl(DWORD dwIoControlCode,
...
@@ -155,7 +155,7 @@ BOOL WINAPI VNBT_DeviceIoControl(DWORD dwIoControlCode,
* to unimplemented...
* to unimplemented...
*/
*/
default:
default:
FIXME
(
"Unimplemented control %
l
d for VxD device VNB
\n
"
,
FIXME
(
"Unimplemented control %d for VxD device VNB
\n
"
,
dwIoControlCode
);
dwIoControlCode
);
error
=
ERROR_NOT_SUPPORTED
;
error
=
ERROR_NOT_SUPPORTED
;
break
;
break
;
...
...
dlls/vnetbios.vxd/vnetbios.c
View file @
41dd56cb
...
@@ -39,7 +39,7 @@ BOOL WINAPI VNETBIOS_DeviceIoControl( DWORD code, LPVOID lpvInBuffer, DWORD cbIn
...
@@ -39,7 +39,7 @@ BOOL WINAPI VNETBIOS_DeviceIoControl( DWORD code, LPVOID lpvInBuffer, DWORD cbIn
Netbios
(
lpvInBuffer
);
Netbios
(
lpvInBuffer
);
return
TRUE
;
return
TRUE
;
default:
default:
FIXME
(
"(%
ld,%p,%ld,%p,%l
d,%p,%p): stub
\n
"
,
FIXME
(
"(%
d,%p,%d,%p,%
d,%p,%p): stub
\n
"
,
code
,
lpvInBuffer
,
cbInBuffer
,
lpvOutBuffer
,
cbOutBuffer
,
code
,
lpvInBuffer
,
cbInBuffer
,
lpvOutBuffer
,
cbOutBuffer
,
lpcbBytesReturned
,
lpOverlapped
);
lpcbBytesReturned
,
lpOverlapped
);
return
FALSE
;
return
FALSE
;
...
...
dlls/vtdapi.vxd/vtdapi.c
View file @
41dd56cb
...
@@ -42,7 +42,7 @@ BOOL WINAPI VTDAPI_DeviceIoControl( DWORD code, LPVOID lpvInBuffer, DWORD cbInBu
...
@@ -42,7 +42,7 @@ BOOL WINAPI VTDAPI_DeviceIoControl( DWORD code, LPVOID lpvInBuffer, DWORD cbInBu
return
TRUE
;
return
TRUE
;
default:
default:
FIXME
(
"Control %
l
d not implemented
\n
"
,
code
);
FIXME
(
"Control %d not implemented
\n
"
,
code
);
return
FALSE
;
return
FALSE
;
}
}
}
}
dlls/winmm/joystick/joystick.c
View file @
41dd56cb
...
@@ -400,7 +400,7 @@ static LRESULT JSTCK_GetPosEx(DWORD_PTR dwDevID, LPJOYINFOEX lpInfo)
...
@@ -400,7 +400,7 @@ static LRESULT JSTCK_GetPosEx(DWORD_PTR dwDevID, LPJOYINFOEX lpInfo)
lpInfo
->
dwButtons
=
js
.
buttons
;
lpInfo
->
dwButtons
=
js
.
buttons
;
#endif
#endif
TRACE
(
"x: %
ld, y: %ld, z: %ld, r: %ld, u: %ld, v: %l
d, buttons: 0x%04x, flags: 0x%04x (fd %d)
\n
"
,
TRACE
(
"x: %
d, y: %d, z: %d, r: %d, u: %d, v: %
d, buttons: 0x%04x, flags: 0x%04x (fd %d)
\n
"
,
lpInfo
->
dwXpos
,
lpInfo
->
dwYpos
,
lpInfo
->
dwZpos
,
lpInfo
->
dwXpos
,
lpInfo
->
dwYpos
,
lpInfo
->
dwZpos
,
lpInfo
->
dwRpos
,
lpInfo
->
dwUpos
,
lpInfo
->
dwVpos
,
lpInfo
->
dwRpos
,
lpInfo
->
dwUpos
,
lpInfo
->
dwVpos
,
(
unsigned
int
)
lpInfo
->
dwButtons
,
(
unsigned
int
)
lpInfo
->
dwButtons
,
...
...
programs/expand/expand.c
View file @
41dd56cb
...
@@ -47,6 +47,6 @@ int main(int argc, char *argv[])
...
@@ -47,6 +47,6 @@ int main(int argc, char *argv[])
ret
=
LZCopy
(
hSourceFile
,
hDestFile
);
ret
=
LZCopy
(
hSourceFile
,
hDestFile
);
LZClose
(
hSourceFile
);
LZClose
(
hSourceFile
);
LZClose
(
hDestFile
);
LZClose
(
hDestFile
);
if
(
ret
<=
0
)
fprintf
(
stderr
,
"LZCopy failed: return is %
l
d
\n
"
,
ret
);
if
(
ret
<=
0
)
fprintf
(
stderr
,
"LZCopy failed: return is %d
\n
"
,
ret
);
return
(
ret
<=
0
);
return
(
ret
<=
0
);
}
}
programs/explorer/desktop.c
View file @
41dd56cb
...
@@ -80,7 +80,7 @@ static unsigned long create_desktop( const char *name, unsigned int width, unsig
...
@@ -80,7 +80,7 @@ static unsigned long create_desktop( const char *name, unsigned int width, unsig
desktop
=
CreateDesktopA
(
name
,
NULL
,
NULL
,
0
,
DESKTOP_ALL_ACCESS
,
NULL
);
desktop
=
CreateDesktopA
(
name
,
NULL
,
NULL
,
0
,
DESKTOP_ALL_ACCESS
,
NULL
);
if
(
!
desktop
)
if
(
!
desktop
)
{
{
WINE_ERR
(
"failed to create desktop %s error %
l
d
\n
"
,
wine_dbgstr_a
(
name
),
GetLastError
()
);
WINE_ERR
(
"failed to create desktop %s error %d
\n
"
,
wine_dbgstr_a
(
name
),
GetLastError
()
);
ExitProcess
(
1
);
ExitProcess
(
1
);
}
}
/* magic: desktop "root" means use the X11 root window */
/* magic: desktop "root" means use the X11 root window */
...
...
programs/msiexec/msiexec.c
View file @
41dd56cb
...
@@ -710,7 +710,7 @@ int main(int argc, char **argv)
...
@@ -710,7 +710,7 @@ int main(int argc, char **argv)
LogFileName
=
argvW
[
i
];
LogFileName
=
argvW
[
i
];
if
(
MsiEnableLogW
(
LogMode
,
LogFileName
,
LogAttributes
)
!=
ERROR_SUCCESS
)
if
(
MsiEnableLogW
(
LogMode
,
LogFileName
,
LogAttributes
)
!=
ERROR_SUCCESS
)
{
{
fprintf
(
stderr
,
"Logging in %s (0x%08
lx, %l
u) failed
\n
"
,
fprintf
(
stderr
,
"Logging in %s (0x%08
x, %
u) failed
\n
"
,
wine_dbgstr_w
(
LogFileName
),
LogMode
,
LogAttributes
);
wine_dbgstr_w
(
LogFileName
),
LogMode
,
LogAttributes
);
ExitProcess
(
1
);
ExitProcess
(
1
);
}
}
...
...
programs/uninstaller/main.c
View file @
41dd56cb
...
@@ -256,7 +256,7 @@ static void UninstallProgram(void)
...
@@ -256,7 +256,7 @@ static void UninstallProgram(void)
{
/* wait for the process to exit */
{
/* wait for the process to exit */
WaitForSingleObject
(
info
.
hProcess
,
INFINITE
);
WaitForSingleObject
(
info
.
hProcess
,
INFINITE
);
res
=
GetExitCodeProcess
(
info
.
hProcess
,
&
exit_code
);
res
=
GetExitCodeProcess
(
info
.
hProcess
,
&
exit_code
);
WINE_TRACE
(
"%d: %08
l
x
\n
"
,
res
,
exit_code
);
WINE_TRACE
(
"%d: %08x
\n
"
,
res
,
exit_code
);
}
}
else
else
{
{
...
...
tools/widl/hash.c
View file @
41dd56cb
...
@@ -514,7 +514,7 @@ unsigned long lhash_val_of_name_sys( syskind_t skind, LCID lcid, LPCSTR lpStr)
...
@@ -514,7 +514,7 @@ unsigned long lhash_val_of_name_sys( syskind_t skind, LCID lcid, LPCSTR lpStr)
switch
(
PRIMARYLANGID
(
LANGIDFROMLCID
(
lcid
)))
switch
(
PRIMARYLANGID
(
LANGIDFROMLCID
(
lcid
)))
{
{
default:
default:
fprintf
(
stderr
,
"Unknown lcid %
l
x, treating as latin-based, please report
\n
"
,
lcid
);
fprintf
(
stderr
,
"Unknown lcid %x, treating as latin-based, please report
\n
"
,
lcid
);
/* .. Fall Through .. */
/* .. Fall Through .. */
case
LANG_AFRIKAANS
:
case
LANG_ALBANIAN
:
case
LANG_ARMENIAN
:
case
LANG_AFRIKAANS
:
case
LANG_ALBANIAN
:
case
LANG_ARMENIAN
:
case
LANG_ASSAMESE
:
case
LANG_AZERI
:
case
LANG_BASQUE
:
case
LANG_ASSAMESE
:
case
LANG_AZERI
:
case
LANG_BASQUE
:
...
...
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