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
f5c87f8e
Commit
f5c87f8e
authored
Aug 29, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Sep 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvfw32: Sign-compare warning fix.
parent
52c6c3fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
msvideo_main.c
dlls/msvfw32/msvideo_main.c
+3
-3
No files found.
dlls/msvfw32/msvideo_main.c
View file @
f5c87f8e
...
...
@@ -102,7 +102,7 @@ static int compare_fourcc(DWORD fcc1, DWORD fcc2)
return
strncasecmp
(
fcc_str1
,
fcc_str2
,
4
);
}
typedef
BOOL
(
*
enum_handler_t
)(
const
char
*
,
int
,
void
*
);
typedef
BOOL
(
*
enum_handler_t
)(
const
char
*
,
unsigned
int
,
void
*
);
static
BOOL
enum_drivers
(
DWORD
fccType
,
enum_handler_t
handler
,
void
*
param
)
{
...
...
@@ -173,7 +173,7 @@ DWORD WINAPI VideoForWindowsVersion(void)
return
0x040003B6
;
/* 4.950 */
}
static
BOOL
ICInfo_enum_handler
(
const
char
*
drv
,
int
nr
,
void
*
param
)
static
BOOL
ICInfo_enum_handler
(
const
char
*
drv
,
unsigned
int
nr
,
void
*
param
)
{
ICINFO
*
lpicinfo
=
(
ICINFO
*
)
param
;
DWORD
fccHandler
=
mmioStringToFOURCCA
(
drv
+
5
,
0
);
...
...
@@ -519,7 +519,7 @@ static HIC try_driver(driver_info_t *info)
return
0
;
}
static
BOOL
ICLocate_enum_handler
(
const
char
*
drv
,
int
nr
,
void
*
param
)
static
BOOL
ICLocate_enum_handler
(
const
char
*
drv
,
unsigned
int
nr
,
void
*
param
)
{
driver_info_t
*
info
=
(
driver_info_t
*
)
param
;
info
->
fccHandler
=
mmioStringToFOURCCA
(
drv
+
5
,
0
);
...
...
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