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
8fac9960
Commit
8fac9960
authored
Oct 05, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvidc32: Win64 printf format warning fixes.
parent
c54a2480
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
Makefile.in
dlls/msvidc32/Makefile.in
+0
-1
msvideo1.c
dlls/msvidc32/msvideo1.c
+6
-6
No files found.
dlls/msvidc32/Makefile.in
View file @
8fac9960
...
@@ -4,7 +4,6 @@ SRCDIR = @srcdir@
...
@@ -4,7 +4,6 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
msvidc32.dll
MODULE
=
msvidc32.dll
IMPORTS
=
user32 kernel32
IMPORTS
=
user32 kernel32
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
C_SRCS
=
\
msvideo1.c
msvideo1.c
...
...
dlls/msvidc32/msvideo1.c
View file @
8fac9960
...
@@ -311,9 +311,9 @@ CRAM_DecompressQuery( Msvideo1Context *info, LPBITMAPINFO in, LPBITMAPINFO out )
...
@@ -311,9 +311,9 @@ CRAM_DecompressQuery( Msvideo1Context *info, LPBITMAPINFO in, LPBITMAPINFO out )
TRACE
(
"planes = %d
\n
"
,
in
->
bmiHeader
.
biPlanes
);
TRACE
(
"planes = %d
\n
"
,
in
->
bmiHeader
.
biPlanes
);
TRACE
(
"bpp = %d
\n
"
,
in
->
bmiHeader
.
biBitCount
);
TRACE
(
"bpp = %d
\n
"
,
in
->
bmiHeader
.
biBitCount
);
TRACE
(
"height = %
l
d
\n
"
,
in
->
bmiHeader
.
biHeight
);
TRACE
(
"height = %d
\n
"
,
in
->
bmiHeader
.
biHeight
);
TRACE
(
"width = %
l
d
\n
"
,
in
->
bmiHeader
.
biWidth
);
TRACE
(
"width = %d
\n
"
,
in
->
bmiHeader
.
biWidth
);
TRACE
(
"compr = %
l
x
\n
"
,
in
->
bmiHeader
.
biCompression
);
TRACE
(
"compr = %x
\n
"
,
in
->
bmiHeader
.
biCompression
);
if
(
(
in
->
bmiHeader
.
biCompression
!=
CRAM_MAGIC
)
&&
if
(
(
in
->
bmiHeader
.
biCompression
!=
CRAM_MAGIC
)
&&
(
in
->
bmiHeader
.
biCompression
!=
MSVC_MAGIC
)
&&
(
in
->
bmiHeader
.
biCompression
!=
MSVC_MAGIC
)
&&
...
@@ -397,7 +397,7 @@ static LRESULT CRAM_Decompress( Msvideo1Context *info, ICDECOMPRESS *icd, DWORD
...
@@ -397,7 +397,7 @@ static LRESULT CRAM_Decompress( Msvideo1Context *info, ICDECOMPRESS *icd, DWORD
LONG
width
,
height
,
stride
,
sz
;
LONG
width
,
height
,
stride
,
sz
;
WORD
bit_per_pixel
;
WORD
bit_per_pixel
;
TRACE
(
"ICM_DECOMPRESS %p %p %
l
d
\n
"
,
info
,
icd
,
size
);
TRACE
(
"ICM_DECOMPRESS %p %p %d
\n
"
,
info
,
icd
,
size
);
if
(
(
info
==
NULL
)
||
(
info
->
dwMagic
!=
CRAM_MAGIC
)
)
if
(
(
info
==
NULL
)
||
(
info
->
dwMagic
!=
CRAM_MAGIC
)
)
return
ICERR_BADPARAM
;
return
ICERR_BADPARAM
;
...
@@ -429,7 +429,7 @@ static LRESULT CRAM_DecompressEx( Msvideo1Context *info, ICDECOMPRESSEX *icd, DW
...
@@ -429,7 +429,7 @@ static LRESULT CRAM_DecompressEx( Msvideo1Context *info, ICDECOMPRESSEX *icd, DW
LONG
width
,
height
,
stride
,
sz
;
LONG
width
,
height
,
stride
,
sz
;
WORD
bit_per_pixel
;
WORD
bit_per_pixel
;
TRACE
(
"ICM_DECOMPRESSEX %p %p %
l
d
\n
"
,
info
,
icd
,
size
);
TRACE
(
"ICM_DECOMPRESSEX %p %p %d
\n
"
,
info
,
icd
,
size
);
if
(
(
info
==
NULL
)
||
(
info
->
dwMagic
!=
CRAM_MAGIC
)
)
if
(
(
info
==
NULL
)
||
(
info
->
dwMagic
!=
CRAM_MAGIC
)
)
return
ICERR_BADPARAM
;
return
ICERR_BADPARAM
;
...
@@ -582,7 +582,7 @@ LRESULT WINAPI CRAM_DriverProc( DWORD_PTR dwDriverId, HDRVR hdrvr, UINT msg,
...
@@ -582,7 +582,7 @@ LRESULT WINAPI CRAM_DriverProc( DWORD_PTR dwDriverId, HDRVR hdrvr, UINT msg,
*/
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hModule
,
DWORD
dwReason
,
LPVOID
lpReserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hModule
,
DWORD
dwReason
,
LPVOID
lpReserved
)
{
{
TRACE
(
"(%p,%
l
d,%p)
\n
"
,
hModule
,
dwReason
,
lpReserved
);
TRACE
(
"(%p,%d,%p)
\n
"
,
hModule
,
dwReason
,
lpReserved
);
switch
(
dwReason
)
switch
(
dwReason
)
{
{
...
...
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