Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/w32api/include/amaudio.h')
-rw-r--r--winsup/w32api/include/amaudio.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/winsup/w32api/include/amaudio.h b/winsup/w32api/include/amaudio.h
deleted file mode 100644
index 94e23ac53..000000000
--- a/winsup/w32api/include/amaudio.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef _AMAUDIO_H
-#define _AMAUDIO_H
-#if __GNUC__ >= 3
-#pragma GCC system_header
-#endif
-
-#include <dsound.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define INTERFACE IAMDirectSound
-DECLARE_INTERFACE_(IAMDirectSound, IUnknown)
-{
- STDMETHOD(QueryInterface)(THIS_ REFIID,LPVOID*) PURE;
- STDMETHOD_(ULONG,AddRef)(THIS) PURE;
- STDMETHOD_(ULONG,Release)(THIS) PURE;
- STDMETHOD(GetDirectSoundInterface)(THIS_ LPDIRECTSOUND*) PURE;
- STDMETHOD(GetPrimaryBufferInterface)(THIS_ LPDIRECTSOUNDBUFFER*) PURE;
- STDMETHOD(GetSecondaryBufferInterface)(THIS_ LPDIRECTSOUNDBUFFER*) PURE;
- STDMETHOD(GetFocusWindow)(THIS_ HWND*,BOOL*) PURE ;
- STDMETHOD(ReleaseDirectSoundInterface)(THIS_ LPDIRECTSOUND) PURE;
- STDMETHOD(ReleasePrimaryBufferInterface)(THIS_ LPDIRECTSOUNDBUFFER) PURE;
- STDMETHOD(ReleaseSecondaryBufferInterface)(THIS_ LPDIRECTSOUNDBUFFER) PURE;
- STDMETHOD(SetFocusWindow)(THIS_ HWND,BOOL) PURE ;
-};
-#undef INTERFACE
-
-#ifdef __cplusplus
-}
-#endif
-#endif