From 28acc8398c58f0326d2e3bb21dd9406b9f480529 Mon Sep 17 00:00:00 2001 From: Christian Costa Date: Sun, 7 Feb 2010 21:17:47 +0100 Subject: [PATCH] quartz: Fix IAMDirectSound interface definition. --- include/amaudio.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/amaudio.h b/include/amaudio.h index 21892c6cf13..ed3a832a44a 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; }; -- 2.11.4.GIT