mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-20 09:29:26 +02:00
* 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:
parent
6e68edac21
commit
38fb33f09a
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user