mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 16:59:12 +02:00
Added type TInterfaceEntryType, EntryType field in TInterfaceEntry. Used in "implements"-implementation
git-svn-id: trunk@4354 -
This commit is contained in:
parent
c7868bd9c9
commit
3e1c0cc8a5
@ -107,12 +107,16 @@
|
|||||||
);
|
);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
// This enumerate is found both in the rtl and compiler. Do not change the order of the fields.
|
||||||
|
tinterfaceentrytype = (etStandard, etVirtualMethodResult, etStaticMethodResult, etFieldValue);
|
||||||
|
|
||||||
pinterfaceentry = ^tinterfaceentry;
|
pinterfaceentry = ^tinterfaceentry;
|
||||||
tinterfaceentry = record
|
tinterfaceentry = record
|
||||||
IID : pguid; { if assigned(IID) then Com else Corba}
|
IID : pguid; { if assigned(IID) then Com else Corba}
|
||||||
VTable : Pointer;
|
VTable : Pointer;
|
||||||
IOffset : PtrInt;
|
IOffset : PtrInt;
|
||||||
IIDStr : pshortstring; { never nil. Com: upper(GuidToString(IID^)) }
|
IIDStr : pshortstring; { never nil. Com: upper(GuidToString(IID^)) }
|
||||||
|
EntryType : tinterfaceentrytype;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
pinterfacetable = ^tinterfacetable;
|
pinterfacetable = ^tinterfacetable;
|
||||||
|
Loading…
Reference in New Issue
Block a user