System.TypInfo.TVmtMethodEntryTail

From RAD Studio API Documentation
Jump to: navigation, search

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;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Description

TVmtMethodEntryTail is used internally to store method RTTI information.

TVmtMethodEntryTail structures are automatically inserted by the Delphi compiler for all instance methods that are marked to emit extended RTTI.

Do not use TVmtMethodEntryTail directly; instead, use the TRttiMethod class to gain access to method information associated with a Delphi class.

See Also