Commit 0ca6db0a authored by Hidenori Takeshima's avatar Hidenori Takeshima Committed by Alexandre Julliard

Added some dshow headers.

parent 7aa86949
......@@ -5,6 +5,8 @@ VPATH = @srcdir@
MODULE = none
INSTALLED_INCLUDES = \
amaudio.h \
amvideo.h \
basetsd.h \
cderr.h \
cguid.h \
......@@ -12,6 +14,7 @@ INSTALLED_INCLUDES = \
commctrl.h \
commdlg.h \
compobj.h \
control.h \
cpl.h \
d3d.h \
d3dcaps.h \
......@@ -98,6 +101,7 @@ INSTALLED_INCLUDES = \
sqlext.h \
sqltypes.h \
storage.h \
strmif.h \
tapi.h \
tlhelp32.h \
unknwn.h \
......
#ifndef __WINE_AMAUDIO_H_
#define __WINE_AMAUDIO_H_
#include "ole2.h"
#include "mmsystem.h"
#include "dsound.h"
typedef struct IAMDirectSound IAMDirectSound;
/**************************************************************************
*
* IAMDirectSound interface
*
*/
#define ICOM_INTERFACE IAMDirectSound
#define IAMDirectSound_METHODS \
ICOM_METHOD1(HRESULT,GetDirectSoundInterface,LPDIRECTSOUND*,a1) \
ICOM_METHOD1(HRESULT,GetPrimaryBufferInterface,LPDIRECTSOUNDBUFFER*,a1) \
ICOM_METHOD1(HRESULT,GetSecondaryBufferInterface,LPDIRECTSOUNDBUFFER*,a1) \
ICOM_METHOD1(HRESULT,ReleaseDirectSoundInterface,LPDIRECTSOUND,a1) \
ICOM_METHOD1(HRESULT,ReleasePrimaryBufferInterface,LPDIRECTSOUNDBUFFER,a1) \
ICOM_METHOD1(HRESULT,ReleaseSecondaryBufferInterface,LPDIRECTSOUNDBUFFER,a1) \
ICOM_METHOD2(HRESULT,SetFocusWindow,HWND,a1,BOOL,a2) \
ICOM_METHOD2(HRESULT,GetFocusWindow,HWND*,a1,BOOL*,a2)
#define IAMDirectSound_IMETHODS \
IUnknown_IMETHODS \
IAMDirectSound_METHODS
ICOM_DEFINE(IAMDirectSound,IUnknown)
#undef ICOM_INTERFACE
/*** IUnknown methods ***/
#define IAMDirectSound_QueryInterface(p,a1,a2) ICOM_CALL2(QueryInterface,p,a1,a2)
#define IAMDirectSound_AddRef(p) ICOM_CALL (AddRef,p)
#define IAMDirectSound_Release(p) ICOM_CALL (Release,p)
/*** IAMDirectSound methods ***/
#define IAMDirectSound_GetDirectSoundInterface(p,a1) ICOM_CALL1(GetDirectSoundInterface,p,a1)
#define IAMDirectSound_GetPrimaryBufferInterface(p,a1) ICOM_CALL1(GetPrimaryBufferInterface,p,a1)
#define IAMDirectSound_GetSecondaryBufferInterface(p,a1) ICOM_CALL1(GetSecondaryBufferInterface,p,a1)
#define IAMDirectSound_ReleaseDirectSoundInterface(p,a1) ICOM_CALL1(ReleaseDirectSoundInterface,p,a1)
#define IAMDirectSound_ReleasePrimaryBufferInterface(p,a1) ICOM_CALL1(ReleasePrimaryBufferInterface,p,a1)
#define IAMDirectSound_ReleaseSecondaryBufferInterface(p,a1) ICOM_CALL1(ReleaseSecondaryBufferInterface,p,a1)
#define IAMDirectSound_SetFocusWindow(p,a1,a2) ICOM_CALL2(SetFocusWindow,p,a1,a2)
#define IAMDirectSound_GetFocusWindow(p,a1,a2) ICOM_CALL2(GetFocusWindow,p,a1,a2)
#endif /* __WINE_AMAUDIO_H_ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment