Module: wine Branch: master Commit: 28acc8398c58f0326d2e3bb21dd9406b9f480529 URL: http://source.winehq.org/git/wine.git/?a=commit;h=28acc8398c58f0326d2e3bb21d...
Author: Christian Costa titan.costa@wanadoo.fr Date: Sun Feb 7 21:17:47 2010 +0100
quartz: Fix IAMDirectSound interface definition.
---
include/amaudio.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/amaudio.h b/include/amaudio.h index 21892c6..ed3a832 100644 --- a/include/amaudio.h +++ b/include/amaudio.h @@ -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; };