* fix for mantis 17083, change funcdesc field to ptr to array of hresult

instead of just ptr to scode.

git-svn-id: trunk@15715 -
This commit is contained in:
marco 2010-08-06 03:12:52 +00:00
parent 6e68edac21
commit 38fb33f09a

View File

@ -813,6 +813,8 @@ TYPE
lpDISPID = ^DISPID;
MEMBERID = DispId;
HREFTYPE = DWord;
TResultList = array[0..high(integer) div 4-50] of HResult;
PResultList = ^TResultList;
PSYSINT = ^SYSINT;
SYSINT = LongInt;
@ -1597,7 +1599,7 @@ TYPE
tagFUNCDESC = Record
memid : MEMBERID;
lprgscode : pSCODE;
lprgscode : PResultList;
lprgelemdescParam : lpELEMDESC; // array of param types
FUNCKIND : funckind;
invkind : INVOKEKIND;