Commit be725a5e authored by Bernhard Kölbl's avatar Bernhard Kölbl Committed by Alexandre Julliard

windows.media.speech: Implement ISpeechRecognitionConstraint isEnabled.

parent a5d14fa9
......@@ -34,6 +34,8 @@ struct list_constraint
ISpeechRecognitionListConstraint ISpeechRecognitionListConstraint_iface;
ISpeechRecognitionConstraint ISpeechRecognitionConstraint_iface;
LONG ref;
BOOLEAN enabled;
};
/*
......@@ -142,14 +144,18 @@ DEFINE_IINSPECTABLE(constraint, ISpeechRecognitionConstraint, struct list_constr
static HRESULT WINAPI constraint_get_IsEnabled( ISpeechRecognitionConstraint *iface, BOOLEAN *value )
{
FIXME("iface %p, value %p stub!\n", iface, value);
return E_NOTIMPL;
struct list_constraint *impl = impl_from_ISpeechRecognitionConstraint(iface);
TRACE("iface %p, value %p.\n", iface, value);
*value = impl->enabled;
return S_OK;
}
static HRESULT WINAPI constraint_put_IsEnabled( ISpeechRecognitionConstraint *iface, BOOLEAN value )
{
FIXME("iface %p, value %u stub!\n", iface, value);
return E_NOTIMPL;
struct list_constraint *impl = impl_from_ISpeechRecognitionConstraint(iface);
TRACE("iface %p, value %u.\n", iface, value);
impl->enabled = value;
return S_OK;
}
static HRESULT WINAPI constraint_get_Tag( ISpeechRecognitionConstraint *iface, HSTRING *value )
......
......@@ -797,13 +797,13 @@ static void test_SpeechRecognitionListConstraint(void)
hr = WindowsDeleteString(tag_out);
todo_wine ok(hr == S_OK, "WindowsDeleteString failed, hr %#lx.\n", hr);
skip_tests:
hr = ISpeechRecognitionConstraint_put_IsEnabled(constraint, TRUE);
todo_wine ok(hr == S_OK, "ISpeechRecognitionConstraint_put_IsEnabled failed, hr %#lx.\n", hr);
ok(hr == S_OK, "ISpeechRecognitionConstraint_put_IsEnabled failed, hr %#lx.\n", hr);
hr = ISpeechRecognitionConstraint_get_IsEnabled(constraint, &enabled);
todo_wine ok(hr == S_OK, "ISpeechRecognitionConstraint_get_IsEnabled failed, hr %#lx.\n", hr);
todo_wine ok(enabled, "ListConstraint didn't get enabled.\n");
ok(hr == S_OK, "ISpeechRecognitionConstraint_get_IsEnabled failed, hr %#lx.\n", hr);
ok(enabled, "ListConstraint didn't get enabled.\n");
skip_tests:
ref = ISpeechRecognitionConstraint_Release(constraint);
ok(ref == 1, "Got unexpected ref %lu.\n", ref);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment