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
47f822ee
Commit
47f822ee
authored
Oct 05, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iccvid: Win64 printf format warning fixes.
parent
223b92fc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
Makefile.in
dlls/iccvid/Makefile.in
+0
-1
iccvid.c
dlls/iccvid/iccvid.c
+6
-6
No files found.
dlls/iccvid/Makefile.in
View file @
47f822ee
...
...
@@ -4,7 +4,6 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
iccvid.dll
IMPORTS
=
user32 kernel32
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
iccvid.c
...
...
dlls/iccvid/iccvid.c
View file @
47f822ee
...
...
@@ -728,8 +728,8 @@ static void ICCVID_dump_BITMAPINFO(const BITMAPINFO * bmi)
TRACE
(
"planes = %d
\n
"
"bpp = %d
\n
"
"height = %
l
d
\n
"
"width = %
l
d
\n
"
"height = %d
\n
"
"width = %d
\n
"
"compr = %s
\n
"
,
bmi
->
bmiHeader
.
biPlanes
,
bmi
->
bmiHeader
.
biBitCount
,
...
...
@@ -744,7 +744,7 @@ static inline int ICCVID_CheckMask(RGBQUAD bmiColors[3], COLORREF redMask, COLOR
COLORREF
realBlueMask
=
MAKECOLOUR32
(
bmiColors
[
1
].
rgbRed
,
bmiColors
[
1
].
rgbGreen
,
bmiColors
[
1
].
rgbBlue
);
COLORREF
realGreenMask
=
MAKECOLOUR32
(
bmiColors
[
2
].
rgbRed
,
bmiColors
[
2
].
rgbGreen
,
bmiColors
[
2
].
rgbBlue
);
TRACE
(
"
\n
bmiColors[0] = 0x%08
lx
\n
bmiColors[1] = 0x%08lx
\n
bmiColors[2] = 0x%08l
x
\n
"
,
TRACE
(
"
\n
bmiColors[0] = 0x%08
x
\n
bmiColors[1] = 0x%08x
\n
bmiColors[2] = 0x%08
x
\n
"
,
realRedMask
,
realBlueMask
,
realGreenMask
);
if
((
realRedMask
==
redMask
)
&&
...
...
@@ -868,7 +868,7 @@ static LRESULT ICCVID_Decompress( ICCVID_Info *info, ICDECOMPRESS *icd, DWORD si
{
LONG
width
,
height
;
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
!=
ICCVID_MAGIC
)
)
return
ICERR_BADPARAM
;
...
...
@@ -886,7 +886,7 @@ static LRESULT ICCVID_DecompressEx( ICCVID_Info *info, ICDECOMPRESSEX *icd, DWOR
{
LONG
width
,
height
;
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
!=
ICCVID_MAGIC
)
)
return
ICERR_BADPARAM
;
...
...
@@ -1017,7 +1017,7 @@ LRESULT WINAPI ICCVID_DriverProc( DWORD_PTR dwDriverId, HDRVR hdrvr, UINT msg,
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
)
{
...
...
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