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
490b4eec
Commit
490b4eec
authored
Oct 14, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 14, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Fix function prototype (PVS-Studio).
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
680ba933
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
imagelist.c
dlls/comctl32/tests/imagelist.c
+2
-3
No files found.
dlls/comctl32/tests/imagelist.c
View file @
490b4eec
...
@@ -1254,7 +1254,7 @@ static void test_imagelist_storage(void)
...
@@ -1254,7 +1254,7 @@ static void test_imagelist_storage(void)
static
void
test_shell_imagelist
(
void
)
static
void
test_shell_imagelist
(
void
)
{
{
BOOL
(
WINAPI
*
pSHGetImageList
)(
INT
,
REFIID
,
void
**
);
HRESULT
(
WINAPI
*
pSHGetImageList
)(
INT
,
REFIID
,
void
**
);
IImageList
*
iml
=
NULL
;
IImageList
*
iml
=
NULL
;
HMODULE
hShell32
;
HMODULE
hShell32
;
HRESULT
hr
;
HRESULT
hr
;
...
@@ -1274,8 +1274,7 @@ static void test_shell_imagelist(void)
...
@@ -1274,8 +1274,7 @@ static void test_shell_imagelist(void)
}
}
/* Get system image list */
/* Get system image list */
hr
=
(
pSHGetImageList
)(
SHIL_SYSSMALL
,
&
IID_IImageList
,
(
void
**
)
&
iml
);
hr
=
pSHGetImageList
(
SHIL_SYSSMALL
,
&
IID_IImageList
,
(
void
**
)
&
iml
);
ok
(
SUCCEEDED
(
hr
),
"SHGetImageList failed, hr=%x
\n
"
,
hr
);
ok
(
SUCCEEDED
(
hr
),
"SHGetImageList failed, hr=%x
\n
"
,
hr
);
if
(
hr
!=
S_OK
)
{
if
(
hr
!=
S_OK
)
{
...
...
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