diff --git a/reactos/dll/win32/wdmaud.drv/mixer.c b/reactos/dll/win32/wdmaud.drv/mixer.c index 147dca06b4c..e71846428bb 100644 --- a/reactos/dll/win32/wdmaud.drv/mixer.c +++ b/reactos/dll/win32/wdmaud.drv/mixer.c @@ -9,6 +9,9 @@ #include "wdmaud.h" +#include +#include + #define NDEBUG #include diff --git a/reactos/dll/win32/wdmaud.drv/mmixer.c b/reactos/dll/win32/wdmaud.drv/mmixer.c index f2f54bc7ddb..076c78cefa6 100644 --- a/reactos/dll/win32/wdmaud.drv/mmixer.c +++ b/reactos/dll/win32/wdmaud.drv/mmixer.c @@ -9,6 +9,10 @@ #include "wdmaud.h" +#include +#include +#include + #define NDEBUG #include diff --git a/reactos/dll/win32/wdmaud.drv/wdmaud.h b/reactos/dll/win32/wdmaud.drv/wdmaud.h index d0a86862506..415fa1aee48 100644 --- a/reactos/dll/win32/wdmaud.drv/wdmaud.h +++ b/reactos/dll/win32/wdmaud.drv/wdmaud.h @@ -1,20 +1,19 @@ -#ifndef WDMAUD_H__ -#define WDMAUD_H__ +#ifndef __WDMAUD_H__ +#define __WDMAUD_H__ -#include #include + +#define WIN32_NO_STATUS +#define _INC_WINDOWS +#define COM_NO_WINDOWS_H + #include -#include #include -#include -#include #include #include #include -#include -#include #include -#include +#include BOOL WdmAudInitUserModeMixer(VOID); @@ -238,4 +237,4 @@ WINAPI MixerEventThreadRoutine( LPVOID Parameter); -#endif +#endif /* __WDMAUD_H__ */