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
650ea6e6
Commit
650ea6e6
authored
Mar 10, 2023
by
Mohamad Al-Jaf
Committed by
Alexandre Julliard
Mar 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows.perception.stub/tests: Add IHolographicSpaceStatics2 properties tests.
parent
83dd2fd8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
perception.c
dlls/windows.perception.stub/tests/perception.c
+11
-0
No files found.
dlls/windows.perception.stub/tests/perception.c
View file @
650ea6e6
...
...
@@ -100,6 +100,7 @@ static void test_HolographicSpaceStatics(void)
static
const
WCHAR
*
holographicspace_statics_name
=
L"Windows.Graphics.Holographic.HolographicSpace"
;
IHolographicSpaceStatics2
*
holographicspace_statics2
;
IActivationFactory
*
factory
;
BOOLEAN
value
;
HSTRING
str
;
HRESULT
hr
;
LONG
ref
;
...
...
@@ -129,6 +130,16 @@ static void test_HolographicSpaceStatics(void)
ok
(
hr
==
S_OK
,
"got hr %#lx.
\n
"
,
hr
);
value
=
2
;
hr
=
IHolographicSpaceStatics2_get_IsSupported
(
holographicspace_statics2
,
&
value
);
todo_wine
ok
(
hr
==
S_OK
,
"got hr %#lx.
\n
"
,
hr
);
todo_wine
ok
(
value
==
TRUE
,
"got %d.
\n
"
,
value
);
value
=
2
;
hr
=
IHolographicSpaceStatics2_get_IsAvailable
(
holographicspace_statics2
,
&
value
);
todo_wine
ok
(
hr
==
S_OK
,
"got hr %#lx.
\n
"
,
hr
);
todo_wine
ok
(
value
==
FALSE
,
"got %d.
\n
"
,
value
);
ref
=
IHolographicSpaceStatics2_Release
(
holographicspace_statics2
);
ok
(
ref
==
2
,
"got ref %ld.
\n
"
,
ref
);
done:
...
...
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