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
9c02d53c
Commit
9c02d53c
authored
Mar 03, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 03, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pstorec/tests: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b01199d6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
dlls/pstorec/tests/Makefile.in
+0
-1
pstorec.c
dlls/pstorec/tests/pstorec.c
+3
-3
No files found.
dlls/pstorec/tests/Makefile.in
View file @
9c02d53c
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
TESTDLL
=
pstorec.dll
C_SRCS
=
\
...
...
dlls/pstorec/tests/pstorec.c
View file @
9c02d53c
...
...
@@ -49,14 +49,14 @@ static void test_PStoreCreateInstance(void)
win_skip
(
"PStoreCreateInstance is not implemented on this system
\n
"
);
return
;
}
ok
(
hr
==
S_OK
,
"Unexpected return value %#x.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"Unexpected return value %#
l
x.
\n
"
,
hr
);
hr
=
IPStore_QueryInterface
(
store
,
&
IID_IUnknown
,
(
void
**
)
&
unk
);
ok
(
hr
==
S_OK
,
"Unexpected return value %#x.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"Unexpected return value %#
l
x.
\n
"
,
hr
);
IUnknown_Release
(
unk
);
hr
=
IPStore_QueryInterface
(
store
,
&
IID_IPStore
,
(
void
**
)
&
unk
);
ok
(
hr
==
S_OK
,
"Unexpected return value %#x.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"Unexpected return value %#
l
x.
\n
"
,
hr
);
IUnknown_Release
(
unk
);
IPStore_Release
(
store
);
...
...
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