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
a0a782d8
Commit
a0a782d8
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: Implement IHolographicSpaceStatics3::get_IsConfigured().
Needed by the VR game Desperate: Vladivostok.
parent
f2a7b2f9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
holographicspace.c
dlls/windows.perception.stub/holographicspace.c
+4
-2
perception.c
dlls/windows.perception.stub/tests/perception.c
+2
-2
No files found.
dlls/windows.perception.stub/holographicspace.c
View file @
a0a782d8
...
...
@@ -174,8 +174,10 @@ DEFINE_IINSPECTABLE( holographicspace_statics3, IHolographicSpaceStatics3, struc
static
HRESULT
WINAPI
holographicspace_statics3_get_IsConfigured
(
IHolographicSpaceStatics3
*
iface
,
boolean
*
value
)
{
FIXME
(
"iface %p, value %p stub!
\n
"
,
iface
,
value
);
return
E_NOTIMPL
;
TRACE
(
"iface %p, value %p
\n
"
,
iface
,
value
);
*
value
=
FALSE
;
return
S_OK
;
}
static
const
struct
IHolographicSpaceStatics3Vtbl
holographicspace_statics3_vtbl
=
...
...
dlls/windows.perception.stub/tests/perception.c
View file @
a0a782d8
...
...
@@ -155,8 +155,8 @@ static void test_HolographicSpaceStatics(void)
value
=
2
;
hr
=
IHolographicSpaceStatics3_get_IsConfigured
(
holographicspace_statics3
,
&
value
);
todo_wine
ok
(
hr
==
S_OK
,
"got hr %#lx.
\n
"
,
hr
);
todo_wine
ok
(
value
==
FALSE
,
"got %d.
\n
"
,
value
);
ok
(
hr
==
S_OK
,
"got hr %#lx.
\n
"
,
hr
);
ok
(
value
==
FALSE
,
"got %d.
\n
"
,
value
);
ref
=
IHolographicSpaceStatics3_Release
(
holographicspace_statics3
);
ok
(
ref
==
2
,
"got ref %ld.
\n
"
,
ref
);
...
...
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