System.TypInfo.TVmtMethodEntryTail
Delphi
TVmtMethodEntryTail = packed record
Version: Byte; // =3
CC: TCallConv;
ResultType: PPTypeInfo; // nil for procedures
ParOff: Word; // total size of data needed for stack parameters + 8 (ret-addr + pushed EBP)
ParamCount: Byte;
{Params: array[1..ParamCount] of TVmtMethodParam;
AttrData: TAttrData;}
end;
C++
struct DECLSPEC_DRECORD TVmtMethodEntryTail
{
public:
System::Byte Version;
TCallConv CC;
PTypeInfo *ResultType;
System::Word ParOff;
System::Byte ParamCount;
};
Eigenschaften
Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet |
---|---|---|---|---|
record struct |
public | System.TypInfo.pas System.TypInfo.hpp |
System.TypInfo | System.TypInfo |
Beschreibung
TVmtMethodEntryTail wird intern zum Speichern von Methoden-RTTI-Informationen verwendet.
TVmtMethodEntryTail-Strukturen werden automatisch vom Delphi-Compiler für alle Instanzmethoden eingefügt, die für die Ausgabe von erweiterten RTTI-Informationen gekennzeichnet sind.
Verwenden Sie TVmtMethodEntryTail nicht direkt, sondern greifen Sie mit der Klasse TRttiMethod auf die einer Delphi-Klasse zugeordneten Methodeninformationen zu.