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
bbd7a6ff
Commit
bbd7a6ff
authored
Dec 01, 2022
by
Mohamad Al-Jaf
Committed by
Alexandre Julliard
Feb 23, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptowinrt: Implement IKeyCredentialManagerStatics::IsSupportedAsync().
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=53176
parent
87b1bd58
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
credentials.c
dlls/cryptowinrt/credentials.c
+9
-2
No files found.
dlls/cryptowinrt/credentials.c
View file @
bbd7a6ff
...
@@ -118,10 +118,17 @@ static const struct IActivationFactoryVtbl factory_vtbl =
...
@@ -118,10 +118,17 @@ static const struct IActivationFactoryVtbl factory_vtbl =
DEFINE_IINSPECTABLE
(
credentials_statics
,
IKeyCredentialManagerStatics
,
struct
credentials_statics
,
IActivationFactory_iface
);
DEFINE_IINSPECTABLE
(
credentials_statics
,
IKeyCredentialManagerStatics
,
struct
credentials_statics
,
IActivationFactory_iface
);
static
HRESULT
WINAPI
is_supported_async
(
IUnknown
*
invoker
,
IUnknown
*
param
,
PROPVARIANT
*
result
)
{
result
->
vt
=
VT_BOOL
;
result
->
boolVal
=
FALSE
;
return
S_OK
;
}
static
HRESULT
WINAPI
credentials_statics_IsSupportedAsync
(
IKeyCredentialManagerStatics
*
iface
,
IAsyncOperation_boolean
**
value
)
static
HRESULT
WINAPI
credentials_statics_IsSupportedAsync
(
IKeyCredentialManagerStatics
*
iface
,
IAsyncOperation_boolean
**
value
)
{
{
FIXME
(
"iface %p, value %p stub!
\n
"
,
iface
,
value
);
TRACE
(
"iface %p, value %p.
\n
"
,
iface
,
value
);
return
E_NOTIMPL
;
return
async_operation_boolean_create
(
(
IUnknown
*
)
iface
,
NULL
,
is_supported_async
,
value
)
;
}
}
static
HRESULT
WINAPI
credentials_statics_RenewAttestationAsync
(
IKeyCredentialManagerStatics
*
iface
,
IAsyncAction
**
operation
)
static
HRESULT
WINAPI
credentials_statics_RenewAttestationAsync
(
IKeyCredentialManagerStatics
*
iface
,
IAsyncAction
**
operation
)
...
...
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