Author: akhaldi Date: Wed Feb 5 21:12:59 2014 New Revision: 61998
URL: http://svn.reactos.org/svn/reactos?rev=61998&view=rev Log: [DEVENUM][DSOUND] * Add header guards to the main headers. CORE-7716
Modified: trunk/reactos/dll/directx/wine/devenum/devenum_private.h trunk/reactos/dll/directx/wine/dsound/dsound_private.h
Modified: trunk/reactos/dll/directx/wine/devenum/devenum_private.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/directx/wine/devenum/de... ============================================================================== --- trunk/reactos/dll/directx/wine/devenum/devenum_private.h [iso-8859-1] (original) +++ trunk/reactos/dll/directx/wine/devenum/devenum_private.h [iso-8859-1] Wed Feb 5 21:12:59 2014 @@ -21,6 +21,9 @@ * NOTES ON FILE: * - Private file where devenum globals are declared */ + +#ifndef __WINE_DEVENUM_H +#define __WINE_DEVENUM_H
#ifndef RC_INVOKED #include <stdarg.h> @@ -91,3 +94,5 @@ extern const WCHAR clsid_keyname[6]; extern const WCHAR wszInstanceKeyName[]; #define CLSID_STR_LEN (sizeof(clsid_keyname) / sizeof(WCHAR)) + +#endif /* __WINE_DEVENUM_H */
Modified: trunk/reactos/dll/directx/wine/dsound/dsound_private.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/directx/wine/dsound/dso... ============================================================================== --- trunk/reactos/dll/directx/wine/dsound/dsound_private.h [iso-8859-1] (original) +++ trunk/reactos/dll/directx/wine/dsound/dsound_private.h [iso-8859-1] Wed Feb 5 21:12:59 2014 @@ -18,6 +18,9 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ + +#ifndef _DSOUND_PRIVATE_H_ +#define _DSOUND_PRIVATE_H_
#include <wine/config.h>
@@ -290,3 +293,5 @@ 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_ */