[DEVENUM][DSOUND]
authorAmine Khaldi <amine.khaldi@reactos.org>
Wed, 5 Feb 2014 21:12:59 +0000 (21:12 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Wed, 5 Feb 2014 21:12:59 +0000 (21:12 +0000)
* Add header guards to the main headers.
CORE-7716

svn path=/trunk/; revision=61998

reactos/dll/directx/wine/devenum/devenum_private.h
reactos/dll/directx/wine/dsound/dsound_private.h

index 7c1a661..35d4d46 100644 (file)
@@ -22,6 +22,9 @@
  * - Private file where devenum globals are declared
  */
 
+#ifndef __WINE_DEVENUM_H
+#define __WINE_DEVENUM_H
+
 #ifndef RC_INVOKED
 #include <stdarg.h>
 #endif
@@ -91,3 +94,5 @@ HRESULT DEVENUM_GetCategoryKey(REFCLSID clsidDeviceClass, HKEY *pBaseKey, WCHAR
 extern const WCHAR clsid_keyname[6];
 extern const WCHAR wszInstanceKeyName[];
 #define CLSID_STR_LEN (sizeof(clsid_keyname) / sizeof(WCHAR))
+
+#endif /* __WINE_DEVENUM_H */
index 7a1d901..0b5fde9 100644 (file)
@@ -19,6 +19,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _DSOUND_PRIVATE_H_
+#define _DSOUND_PRIVATE_H_
+
 #include <wine/config.h>
 
 #include <assert.h>
@@ -290,3 +293,5 @@ BOOL DSOUND_check_supported(IAudioClient *client, DWORD rate,
 UINT DSOUND_create_timer(LPTIMECALLBACK cb, DWORD_PTR user) DECLSPEC_HIDDEN;
 HRESULT enumerate_mmdevices(EDataFlow flow, GUID *guids,
         LPDSENUMCALLBACKW cb, void *user) DECLSPEC_HIDDEN;
+
+#endif /* _DSOUND_PRIVATE_H_ */