From: Zebediah Figura zfigura@codeweavers.com
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"