[DEVENUM][DSOUND]

* Add header guards to the main headers.
CORE-7716

svn path=/trunk/; revision=61998
This commit is contained in:
Amine Khaldi 2014-02-05 21:12:59 +00:00
parent 8a9b8e767c
commit a1bceddf2d
2 changed files with 10 additions and 0 deletions

View 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 */

View 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_ */