include/windows.media.speechrecognition.idl: Add SpeechRecognitionHypothesisGeneratedEventArgs.
Signed-off-by: Bernhard Kölbl <besentv@gmail.com> Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
dc1d318ea2
commit
c4147e92cf
|
@ -42,6 +42,7 @@ namespace Windows {
|
|||
interface ISpeechContinuousRecognitionSession;
|
||||
interface ISpeechRecognitionConstraint;
|
||||
interface ISpeechRecognitionHypothesis;
|
||||
interface ISpeechRecognitionHypothesisGeneratedEventArgs;
|
||||
interface ISpeechRecognitionResult;
|
||||
interface ISpeechRecognitionResult2;
|
||||
interface ISpeechRecognitionSemanticInterpretation;
|
||||
|
@ -49,6 +50,7 @@ namespace Windows {
|
|||
runtimeclass SpeechContinuousRecognitionResultGeneratedEventArgs;
|
||||
runtimeclass SpeechContinuousRecognitionSession;
|
||||
runtimeclass SpeechRecognitionHypothesis;
|
||||
runtimeclass SpeechRecognitionHypothesisGeneratedEventArgs;
|
||||
runtimeclass SpeechRecognitionResult;
|
||||
runtimeclass SpeechRecognitionSemanticInterpretation;
|
||||
}
|
||||
|
@ -196,6 +198,16 @@ namespace Windows {
|
|||
[propget] HRESULT Text([out, retval] HSTRING *value);
|
||||
}
|
||||
|
||||
[
|
||||
contract(Windows.Foundation.UniversalApiContract, 1.0),
|
||||
exclusiveto(Windows.Media.SpeechRecognition.SpeechRecognitionHypothesisGeneratedEventArgs),
|
||||
uuid(55161a7a-8023-5866-411d-1213bb271476)
|
||||
]
|
||||
interface ISpeechRecognitionHypothesisGeneratedEventArgs : IInspectable
|
||||
{
|
||||
[propget] HRESULT Hypothesis([out, retval] Windows.Media.SpeechRecognition.SpeechRecognitionHypothesis **value);
|
||||
}
|
||||
|
||||
[
|
||||
contract(Windows.Foundation.UniversalApiContract, 1.0),
|
||||
exclusiveto(Windows.Media.SpeechRecognition.SpeechRecognitionResult),
|
||||
|
@ -274,6 +286,16 @@ namespace Windows {
|
|||
[default] interface Windows.Media.SpeechRecognition.ISpeechRecognitionHypothesis;
|
||||
}
|
||||
|
||||
[
|
||||
contract(Windows.Foundation.UniversalApiContract, 1.0),
|
||||
marshaling_behavior(agile),
|
||||
threading(both)
|
||||
]
|
||||
runtimeclass SpeechRecognitionHypothesisGeneratedEventArgs
|
||||
{
|
||||
[default] interface Windows.Media.SpeechRecognition.ISpeechRecognitionHypothesisGeneratedEventArgs;
|
||||
}
|
||||
|
||||
[
|
||||
contract(Windows.Foundation.UniversalApiContract, 1.0),
|
||||
marshaling_behavior(agile)
|
||||
|
|
Loading…
Reference in New Issue