From 8b5b0076a14b02c153dd4432320d5bb71f6e436d Mon Sep 17 00:00:00 2001 From: James Hatheway <james@macadamian.com> Date: Wed, 9 Aug 2000 22:22:05 +0000 Subject: [PATCH] Fixed typo in the IDispatch_GetTypeInfo macro. --- include/wine/obj_oleaut.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wine/obj_oleaut.h b/include/wine/obj_oleaut.h index 87c296dcd99..e38c67726bd 100644 --- a/include/wine/obj_oleaut.h +++ b/include/wine/obj_oleaut.h @@ -526,7 +526,7 @@ ICOM_DEFINE(IDispatch,IUnknown) #define IDispatch_Release(p) ICOM_CALL (Release,p) /*** IDispatch methods ***/ #define IDispatch_GetTypeInfoCount(p,a) ICOM_CALL1 (GetTypeInfoCount,p,a) -#define IDispatch_GetTypeInfo(p,a,b,c) ICOM_CALL3 (GetTypeInfo,p,b,c) +#define IDispatch_GetTypeInfo(p,a,b,c) ICOM_CALL3 (GetTypeInfo,p,a,b,c) #define IDispatch_GetIDsOfNames(p,a,b,c,d,e) ICOM_CALL5 (GetIDsOfNames,p,a,b,c,d,e) #define IDispatch_Invoke(p,a,b,c,d,e,f,g,h) ICOM_CALL8 (Invoke,p,a,b,c,d,e,f,g,h) -- GitLab