Fixed typo in the IDispatch_GetTypeInfo macro.

This commit is contained in:
James Hatheway 2000-08-09 22:22:05 +00:00 committed by Alexandre Julliard
parent 363a75f63a
commit 8b5b0076a1
1 changed files with 1 additions and 1 deletions

View File

@ -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)