Module: wine Branch: master Commit: 2a0e659335ecf1d8967c75c9efe164c2d9d0214c URL: http://source.winehq.org/git/wine.git/?a=commit;h=2a0e659335ecf1d8967c75c9ef...
Author: Vincent Pelletier plr.vincent@gmail.com Date: Wed Jan 21 07:44:39 2009 +0100
dinput: Fix macro definitions.
---
include/dinput.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/dinput.h b/include/dinput.h index 44b20fd..05640bd 100644 --- a/include/dinput.h +++ b/include/dinput.h @@ -1358,7 +1358,7 @@ DECLARE_INTERFACE_(IDirectInputEffect,IUnknown) #define IDirectInputEffect_SetParameters(p,a,b) (p)->lpVtbl->SetParameters(p,a,b) #define IDirectInputEffect_Start(p,a,b) (p)->lpVtbl->Start(p,a,b) #define IDirectInputEffect_Stop(p) (p)->lpVtbl->Stop(p) -#define IDirectInputEffect_GetEffectStatus(p,a,b) (p)->lpVtbl->GetEffectStatus(p,a) +#define IDirectInputEffect_GetEffectStatus(p,a) (p)->lpVtbl->GetEffectStatus(p,a) #define IDirectInputEffect_Download(p) (p)->lpVtbl->Download(p) #define IDirectInputEffect_Unload(p) (p)->lpVtbl->Unload(p) #define IDirectInputEffect_Escape(p,a) (p)->lpVtbl->Escape(p,a) @@ -1374,7 +1374,7 @@ DECLARE_INTERFACE_(IDirectInputEffect,IUnknown) #define IDirectInputEffect_SetParameters(p,a,b) (p)->SetParameters(a,b) #define IDirectInputEffect_Start(p,a,b) (p)->Start(a,b) #define IDirectInputEffect_Stop(p) (p)->Stop() -#define IDirectInputEffect_GetEffectStatus(p,a,b) (p)->GetEffectStatus(a) +#define IDirectInputEffect_GetEffectStatus(p,a) (p)->GetEffectStatus(a) #define IDirectInputEffect_Download(p) (p)->Download() #define IDirectInputEffect_Unload(p) (p)->Unload() #define IDirectInputEffect_Escape(p,a) (p)->Escape(a)