Module: wine
Branch: master
Commit: d63acb3b913aac16fd2dba8c0665a26f326c0227
URL: https://gitlab.winehq.org/wine/wine/-/commit/d63acb3b913aac16fd2dba8c0665a2…
Author: Zebediah Figura <zfigura(a)codeweavers.com>
Date: Wed Sep 6 12:54:14 2023 -0500
dsound: Do not include strmif.h.
dsound_private.h pulls in mediaobj.h, which previously pulled in strmif.h.
We were including that under the initguid.h, which meant that strmif.h GUIDs
were being defined in both dsound_main.o and uuid. Now that mediaobj.h does not
pull in strmif.h anymore, we don't need this include.
---
dlls/dsound/dsound_main.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/dlls/dsound/dsound_main.c b/dlls/dsound/dsound_main.c
index 08c08d841b4..f0ceb2ce0b8 100644
--- a/dlls/dsound/dsound_main.c
+++ b/dlls/dsound/dsound_main.c
@@ -52,7 +52,6 @@
#include "unknwn.h"
#include "oleidl.h"
#include "shobjidl.h"
-#include "strmif.h"
#include "propkey.h"
#include "initguid.h"