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
4bd7b55d
Commit
4bd7b55d
authored
Feb 24, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
explorerframe/tests: Use correct integral type.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
309a564d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
nstc.c
dlls/explorerframe/tests/nstc.c
+5
-5
No files found.
dlls/explorerframe/tests/nstc.c
View file @
4bd7b55d
...
...
@@ -910,7 +910,7 @@ static void test_basics(void)
ok
(
style
==
tmp
,
"Got style %x (expected %x)
\n
"
,
style
,
tmp
);
if
(
SUCCEEDED
(
hr
))
{
DWORD
tmp2
;
NSTCSTYLE
tmp2
;
for
(
i
=
0
;
styles
[
i
]
!=
0
;
i
++
)
{
hr
=
INameSpaceTreeControl2_GetControlStyle
(
pnstc2
,
styles
[
i
],
&
tmp2
);
...
...
@@ -966,7 +966,7 @@ static void test_basics(void)
ok
(
style2
==
tmp
,
"Got style %x (expected %x)
\n
"
,
style2
,
tmp
);
if
(
SUCCEEDED
(
hr
))
{
DWORD
tmp2
;
NSTCSTYLE2
tmp2
;
for
(
i
=
0
;
styles2
[
i
]
!=
0
;
i
++
)
{
hr
=
INameSpaceTreeControl2_GetControlStyle2
(
pnstc2
,
styles2
[
i
],
&
tmp2
);
...
...
@@ -1372,7 +1372,7 @@ static void test_basics(void)
ok
(
hr
==
S_OK
,
"Got 0x%08x
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
{
UINT
count
;
DWORD
count
;
hr
=
IShellItemArray_GetCount
(
psia
,
&
count
);
ok
(
hr
==
S_OK
,
"Got 0x%08x
\n
"
,
hr
);
ok
(
count
==
1
,
"Got %d selected items.
\n
"
,
count
);
...
...
@@ -1400,7 +1400,7 @@ static void test_basics(void)
ok
(
hr
==
S_OK
,
"Got 0x%08x
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
{
UINT
count
;
DWORD
count
;
hr
=
IShellItemArray_GetCount
(
psia
,
&
count
);
ok
(
hr
==
S_OK
,
"Got 0x%08x
\n
"
,
hr
);
ok
(
count
==
1
,
"Got %d selected items.
\n
"
,
count
);
...
...
@@ -1426,7 +1426,7 @@ static void test_basics(void)
ok
(
hr
==
S_OK
,
"Got 0x%08x
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
{
UINT
count
;
DWORD
count
;
hr
=
IShellItemArray_GetCount
(
psia
,
&
count
);
ok
(
hr
==
S_OK
,
"Got 0x%08x
\n
"
,
hr
);
ok
(
count
==
1
,
"Got %d selected items.
\n
"
,
count
);
...
...
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