quartz: Fix IAMDirectSound interface definition.

This commit is contained in:
Christian Costa 2010-02-07 21:17:47 +01:00 committed by Alexandre Julliard
parent a4b622d81a
commit 28acc8398c
1 changed files with 4 additions and 4 deletions

View File

@ -34,11 +34,11 @@ DECLARE_INTERFACE_(IAMDirectSound,IUnknown)
/*** IAMDirectSound methods ***/
STDMETHOD(GetDirectSoundInterface)(THIS_ IDirectSound **ds) PURE;
STDMETHOD(GetPrimaryBufferInterface(THIS_ IDirectSoundBuffer **buf) PURE;
STDMETHOD(GetPrimaryBufferInterface)(THIS_ IDirectSoundBuffer **buf) PURE;
STDMETHOD(GetSecondaryBufferInterface)(THIS_ IDirectSoundBuffer **buf) PURE;
STDMETHOD(ReleaseDirectSoundInterface(THIS_ IDirectSound *ds) PURE;
STDMETHOD(ReleasePrimaryBufferInterface(THIS_ IDirectSoundBuffer *buf) PURE;
STDMETHOD(ReleaseSecondaryBufferInterface(THIS_ IDirectSoundBuffer *buf) PURE;
STDMETHOD(ReleaseDirectSoundInterface)(THIS_ IDirectSound *ds) PURE;
STDMETHOD(ReleasePrimaryBufferInterface)(THIS_ IDirectSoundBuffer *buf) PURE;
STDMETHOD(ReleaseSecondaryBufferInterface)(THIS_ IDirectSoundBuffer *buf) PURE;
STDMETHOD(SetFocusWindow)(THIS_ HWND hwnd, BOOL bgsilent) PURE;
STDMETHOD(GetFocusWindow)(THIS_ HWND hwnd) PURE;
};