From 6fe186468c317c1ee8d62519ce6d266ad3bdd1d6 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 19 Jul 2023 12:20:19 +0200 Subject: [PATCH] dmsynth/tests: Use nameless unions/structs. --- dlls/dmsynth/tests/dmsynth.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dlls/dmsynth/tests/dmsynth.c b/dlls/dmsynth/tests/dmsynth.c index a8bf65cd73e..f21e543705a 100644 --- a/dlls/dmsynth/tests/dmsynth.c +++ b/dlls/dmsynth/tests/dmsynth.c @@ -108,30 +108,30 @@ static void test_dmsynth(void) hr = IDirectMusicSynth_QueryInterface(dmsynth, &IID_IKsControl, (LPVOID*)&control_synth); ok(hr == S_OK, "IDirectMusicSynth_QueryInterface returned: %#lx\n", hr); - S(U(property)).Id = 0; - S(U(property)).Flags = KSPROPERTY_TYPE_GET; + property.Id = 0; + property.Flags = KSPROPERTY_TYPE_GET; - S(U(property)).Set = GUID_DMUS_PROP_INSTRUMENT2; + property.Set = GUID_DMUS_PROP_INSTRUMENT2; hr = IKsControl_KsProperty(control_synth, &property, sizeof(property), &value, sizeof(value), &bytes); ok(hr == S_OK, "IKsControl_KsProperty returned: %#lx\n", hr); ok(bytes == sizeof(DWORD), "Returned bytes: %lu, should be 4\n", bytes); ok(value == TRUE, "Return value: %lu, should be 1\n", value); - S(U(property)).Set = GUID_DMUS_PROP_DLS2; + property.Set = GUID_DMUS_PROP_DLS2; hr = IKsControl_KsProperty(control_synth, &property, sizeof(property), &value, sizeof(value), &bytes); ok(hr == S_OK, "IKsControl_KsProperty returned: %#lx\n", hr); ok(bytes == sizeof(DWORD), "Returned bytes: %lu, should be 4\n", bytes); ok(value == TRUE, "Return value: %lu, should be 1\n", value); - S(U(property)).Set = GUID_DMUS_PROP_GM_Hardware; + property.Set = GUID_DMUS_PROP_GM_Hardware; hr = IKsControl_KsProperty(control_synth, &property, sizeof(property), &value, sizeof(value), &bytes); ok(hr == S_OK, "IKsControl_KsProperty returned: %#lx\n", hr); ok(bytes == sizeof(DWORD), "Returned bytes: %lu, should be 4\n", bytes); ok(value == FALSE, "Return value: %lu, should be 0\n", value); - S(U(property)).Set = GUID_DMUS_PROP_GS_Hardware; + property.Set = GUID_DMUS_PROP_GS_Hardware; hr = IKsControl_KsProperty(control_synth, &property, sizeof(property), &value, sizeof(value), &bytes); ok(hr == S_OK, "IKsControl_KsProperty returned: %#lx\n", hr); ok(bytes == sizeof(DWORD), "Returned bytes: %lu, should be 4\n", bytes); ok(value == FALSE, "Return value: %lu, should be 0\n", value); - S(U(property)).Set = GUID_DMUS_PROP_XG_Hardware; + property.Set = GUID_DMUS_PROP_XG_Hardware; hr = IKsControl_KsProperty(control_synth, &property, sizeof(property), &value, sizeof(value), &bytes); ok(hr == S_OK, "IKsControl_KsProperty returned: %#lx\n", hr); ok(bytes == sizeof(DWORD), "Returned bytes: %lu, should be 4\n", bytes); @@ -140,7 +140,7 @@ static void test_dmsynth(void) hr = IDirectMusicSynthSink_QueryInterface(dmsynth_sink, &IID_IKsControl, (LPVOID*)&control_sink); ok(hr == S_OK, "IDirectMusicSynthSink_QueryInterface returned: %#lx\n", hr); - S(U(property)).Set = GUID_DMUS_PROP_SinkUsesDSound; + property.Set = GUID_DMUS_PROP_SinkUsesDSound; hr = IKsControl_KsProperty(control_sink, &property, sizeof(property), &value, sizeof(value), &bytes); ok(hr == S_OK, "IKsControl_KsProperty returned: %#lx\n", hr); ok(bytes == sizeof(DWORD), "Returned bytes: %lu, should be 4\n", bytes);