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
6b8ecfd2
Commit
6b8ecfd2
authored
Aug 02, 2023
by
Mohamad Al-Jaf
Committed by
Alexandre Julliard
Aug 08, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hvsimanagementapi: Implement IIsolatedWindowsEnvironmentHostStatics::get_IsReady().
Needed for MS Office 365.
parent
3d123314
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
host.c
dlls/hvsimanagementapi/host.c
+4
-2
isolation.c
dlls/hvsimanagementapi/tests/isolation.c
+2
-2
No files found.
dlls/hvsimanagementapi/host.c
View file @
6b8ecfd2
...
@@ -119,8 +119,10 @@ DEFINE_IINSPECTABLE( isolated_host_statics, IIsolatedWindowsEnvironmentHostStati
...
@@ -119,8 +119,10 @@ DEFINE_IINSPECTABLE( isolated_host_statics, IIsolatedWindowsEnvironmentHostStati
static
HRESULT
WINAPI
isolated_host_statics_get_IsReady
(
IIsolatedWindowsEnvironmentHostStatics
*
iface
,
boolean
*
value
)
static
HRESULT
WINAPI
isolated_host_statics_get_IsReady
(
IIsolatedWindowsEnvironmentHostStatics
*
iface
,
boolean
*
value
)
{
{
FIXME
(
"iface %p, value %p stub!
\n
"
,
iface
,
value
);
TRACE
(
"iface %p, value %p
\n
"
,
iface
,
value
);
return
E_NOTIMPL
;
*
value
=
FALSE
;
return
S_OK
;
}
}
static
HRESULT
WINAPI
isolated_host_statics_get_HostErrors
(
IIsolatedWindowsEnvironmentHostStatics
*
iface
,
static
HRESULT
WINAPI
isolated_host_statics_get_HostErrors
(
IIsolatedWindowsEnvironmentHostStatics
*
iface
,
...
...
dlls/hvsimanagementapi/tests/isolation.c
View file @
6b8ecfd2
...
@@ -76,8 +76,8 @@ static void test_IsolatedWindowsEnvironmentHostStatics(void)
...
@@ -76,8 +76,8 @@ static void test_IsolatedWindowsEnvironmentHostStatics(void)
ok
(
hr
==
S_OK
,
"got hr %#lx.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"got hr %#lx.
\n
"
,
hr
);
hr
=
IIsolatedWindowsEnvironmentHostStatics_get_IsReady
(
isolated_host_statics
,
&
value
);
hr
=
IIsolatedWindowsEnvironmentHostStatics_get_IsReady
(
isolated_host_statics
,
&
value
);
todo_wine
ok
(
hr
==
S_OK
||
broken
(
hr
==
E_NOTIMPL
/* Win10 2004 */
),
"got hr %#lx.
\n
"
,
hr
);
ok
(
hr
==
S_OK
||
broken
(
hr
==
E_NOTIMPL
/* Win10 2004 */
),
"got hr %#lx.
\n
"
,
hr
);
todo_wine
ok
(
!
value
,
"got %d.
\n
"
,
value
);
ok
(
!
value
,
"got %d.
\n
"
,
value
);
ref
=
IIsolatedWindowsEnvironmentHostStatics_Release
(
isolated_host_statics
);
ref
=
IIsolatedWindowsEnvironmentHostStatics_Release
(
isolated_host_statics
);
ok
(
ref
==
2
,
"got ref %ld.
\n
"
,
ref
);
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