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
1438b1b6
Commit
1438b1b6
authored
May 02, 2022
by
Bernhard Kölbl
Committed by
Alexandre Julliard
May 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows.media.speech: Partially implement IAsyncAction.
Signed-off-by:
Bernhard Kölbl
<
besentv@gmail.com
>
parent
a01fa461
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
99 additions
and
20 deletions
+99
-20
async.c
dlls/windows.media.speech/async.c
+91
-12
speech.c
dlls/windows.media.speech/tests/speech.c
+8
-8
No files found.
dlls/windows.media.speech/async.c
View file @
1438b1b6
...
...
@@ -37,6 +37,11 @@ struct async_void
IAsyncAction
IAsyncAction_iface
;
IAsyncInfo
IAsyncInfo_iface
;
LONG
ref
;
IAsyncActionCompletedHandler
*
handler
;
AsyncStatus
status
;
HRESULT
hr
;
};
static
inline
struct
async_void
*
impl_from_IAsyncAction
(
IAsyncAction
*
iface
)
...
...
@@ -106,20 +111,56 @@ HRESULT WINAPI async_void_GetTrustLevel( IAsyncAction *iface, TrustLevel *trust_
HRESULT
WINAPI
async_void_put_Completed
(
IAsyncAction
*
iface
,
IAsyncActionCompletedHandler
*
handler
)
{
FIXME
(
"iface %p, handler %p stub!
\n
"
,
iface
,
handler
);
return
E_NOTIMPL
;
struct
async_void
*
impl
=
impl_from_IAsyncAction
(
iface
);
HRESULT
hr
=
S_OK
;
TRACE
(
"iface %p, handler %p.
\n
"
,
iface
,
handler
);
if
(
impl
->
status
==
Closed
)
hr
=
E_ILLEGAL_METHOD_CALL
;
else
if
(
impl
->
handler
!=
HANDLER_NOT_SET
)
hr
=
E_ILLEGAL_DELEGATE_ASSIGNMENT
;
/*
impl->handler can only be set once with async_operation_put_Completed,
so by default we set a non HANDLER_NOT_SET value, in this case handler.
*/
else
if
((
impl
->
handler
=
handler
))
{
IAsyncActionCompletedHandler_AddRef
(
impl
->
handler
);
if
(
impl
->
status
>
Started
)
{
IAsyncAction
*
action
=
&
impl
->
IAsyncAction_iface
;
AsyncStatus
status
=
impl
->
status
;
impl
->
handler
=
NULL
;
/* Prevent concurrent invoke. */
IAsyncActionCompletedHandler_Invoke
(
handler
,
action
,
status
);
IAsyncActionCompletedHandler_Release
(
handler
);
}
}
return
hr
;
}
HRESULT
WINAPI
async_void_get_Completed
(
IAsyncAction
*
iface
,
IAsyncActionCompletedHandler
**
handler
)
{
FIXME
(
"iface %p, handler %p stub!
\n
"
,
iface
,
handler
);
return
E_NOTIMPL
;
struct
async_void
*
impl
=
impl_from_IAsyncAction
(
iface
);
HRESULT
hr
=
S_OK
;
FIXME
(
"iface %p, handler %p semi stub!
\n
"
,
iface
,
handler
);
if
(
impl
->
status
==
Closed
)
hr
=
E_ILLEGAL_METHOD_CALL
;
*
handler
=
(
impl
->
handler
!=
HANDLER_NOT_SET
)
?
impl
->
handler
:
NULL
;
return
hr
;
}
HRESULT
WINAPI
async_void_GetResults
(
IAsyncAction
*
iface
)
{
FIXME
(
"iface %p stub!
\n
"
,
iface
);
return
E_NOTIMPL
;
/* According to the docs, this function doesn't return anything, so it's left empty. */
TRACE
(
"iface %p.
\n
"
,
iface
);
return
S_OK
;
}
static
const
struct
IAsyncActionVtbl
async_void_vtbl
=
...
...
@@ -154,26 +195,61 @@ static HRESULT WINAPI async_void_info_get_Id( IAsyncInfo *iface, UINT32 *id )
static
HRESULT
WINAPI
async_void_info_get_Status
(
IAsyncInfo
*
iface
,
AsyncStatus
*
status
)
{
FIXME
(
"iface %p, status %p.
\n
"
,
iface
,
status
);
return
E_NOTIMPL
;
struct
async_void
*
impl
=
impl_from_async_void_IAsyncInfo
(
iface
);
HRESULT
hr
=
S_OK
;
TRACE
(
"iface %p, status %p.
\n
"
,
iface
,
status
);
if
(
impl
->
status
==
Closed
)
hr
=
E_ILLEGAL_METHOD_CALL
;
*
status
=
impl
->
status
;
return
hr
;
}
static
HRESULT
WINAPI
async_void_info_get_ErrorCode
(
IAsyncInfo
*
iface
,
HRESULT
*
error_code
)
{
FIXME
(
"iface %p, error_code %p.
\n
"
,
iface
,
error_code
);
return
E_NOTIMPL
;
struct
async_void
*
impl
=
impl_from_async_void_IAsyncInfo
(
iface
);
HRESULT
hr
=
S_OK
;
TRACE
(
"iface %p, error_code %p.
\n
"
,
iface
,
error_code
);
if
(
impl
->
status
==
Closed
)
*
error_code
=
hr
=
E_ILLEGAL_METHOD_CALL
;
else
*
error_code
=
impl
->
hr
;
return
hr
;
}
static
HRESULT
WINAPI
async_void_info_Cancel
(
IAsyncInfo
*
iface
)
{
struct
async_void
*
impl
=
impl_from_async_void_IAsyncInfo
(
iface
);
HRESULT
hr
=
S_OK
;
TRACE
(
"iface %p.
\n
"
,
iface
);
return
E_NOTIMPL
;
if
(
impl
->
status
==
Closed
)
hr
=
E_ILLEGAL_METHOD_CALL
;
else
if
(
impl
->
status
==
Started
)
impl
->
status
=
Canceled
;
return
hr
;
}
static
HRESULT
WINAPI
async_void_info_Close
(
IAsyncInfo
*
iface
)
{
struct
async_void
*
impl
=
impl_from_async_void_IAsyncInfo
(
iface
);
HRESULT
hr
=
S_OK
;
TRACE
(
"iface %p.
\n
"
,
iface
);
return
E_NOTIMPL
;
if
(
impl
->
status
==
Started
)
hr
=
E_ILLEGAL_STATE_CHANGE
;
else
if
(
impl
->
status
!=
Closed
)
impl
->
status
=
Closed
;
return
hr
;
}
static
const
struct
IAsyncInfoVtbl
async_void_info_vtbl
=
...
...
@@ -210,6 +286,9 @@ HRESULT async_action_create( IAsyncAction **out )
impl
->
IAsyncInfo_iface
.
lpVtbl
=
&
async_void_info_vtbl
;
impl
->
ref
=
1
;
impl
->
handler
=
HANDLER_NOT_SET
;
impl
->
status
=
Completed
;
*
out
=
&
impl
->
IAsyncAction_iface
;
TRACE
(
"created %p
\n
"
,
*
out
);
return
S_OK
;
...
...
dlls/windows.media.speech/tests/speech.c
View file @
1438b1b6
...
...
@@ -1581,27 +1581,25 @@ static void test_Recognition(void)
handler
=
(
void
*
)
0xdeadbeef
;
hr
=
IAsyncAction_get_Completed
(
action
,
&
handler
);
todo_wine
ok
(
hr
==
S_OK
,
"IAsyncAction_put_Completed failed, hr %#lx.
\n
"
,
hr
);
todo_wine
ok
(
handler
==
NULL
,
"Handler was %p.
\n
"
,
handler
);
if
(
FAILED
(
hr
))
goto
skip_action
;
ok
(
hr
==
S_OK
,
"IAsyncAction_put_Completed failed, hr %#lx.
\n
"
,
hr
);
ok
(
handler
==
NULL
,
"Handler was %p.
\n
"
,
handler
);
await_async_void
(
action
,
&
action_handler
);
hr
=
IAsyncAction_QueryInterface
(
action
,
&
IID_IAsyncInfo
,
(
void
**
)
&
info
);
todo_wine
ok
(
hr
==
S_OK
,
"IAsyncAction_QueryInterface failed, hr %#lx.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"IAsyncAction_QueryInterface failed, hr %#lx.
\n
"
,
hr
);
check_async_info
((
IInspectable
*
)
action
,
1
,
Completed
,
S_OK
);
hr
=
IAsyncInfo_Cancel
(
info
);
todo_wine
ok
(
hr
==
S_OK
,
"IAsyncInfo_Cancel failed, hr %#lx.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"IAsyncInfo_Cancel failed, hr %#lx.
\n
"
,
hr
);
check_async_info
((
IInspectable
*
)
action
,
1
,
Completed
,
S_OK
);
hr
=
IAsyncInfo_Close
(
info
);
todo_wine
ok
(
hr
==
S_OK
,
"IAsyncInfo_Close failed, hr %#lx.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"IAsyncInfo_Close failed, hr %#lx.
\n
"
,
hr
);
check_async_info
((
IInspectable
*
)
action
,
1
,
AsyncStatus_Closed
,
S_OK
);
hr
=
IAsyncInfo_Close
(
info
);
todo_wine
ok
(
hr
==
S_OK
,
"IAsyncInfo_Close failed, hr %#lx.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"IAsyncInfo_Close failed, hr %#lx.
\n
"
,
hr
);
check_async_info
((
IInspectable
*
)
action
,
1
,
AsyncStatus_Closed
,
S_OK
);
hr
=
IAsyncInfo_Cancel
(
info
);
...
...
@@ -1617,6 +1615,8 @@ static void test_Recognition(void)
hr
=
ISpeechContinuousRecognitionSession_StopAsync
(
session
,
&
action2
);
todo_wine
ok
(
hr
==
S_OK
,
"ISpeechContinuousRecognitionSession_StopAsync failed, hr %#lx.
\n
"
,
hr
);
if
(
FAILED
(
hr
))
goto
skip_action
;
async_void_handler_create_static
(
&
action_handler
);
action_handler
.
event_block
=
CreateEventW
(
NULL
,
FALSE
,
FALSE
,
NULL
);
action_handler
.
event_finished
=
CreateEventW
(
NULL
,
FALSE
,
FALSE
,
NULL
);
...
...
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