System.TypInfo.TIntfMethodEntryTail

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

  TIntfMethodEntryTail = packed record
    Kind: Byte; // 0=proc or 1=func
    CC: TCallConv;
    ParamCount: Byte;
   {Params: array[1..ParamCount] of TIntfMethodParam;
    ResultTypeName: string; // only if func
    ResultType: PPTypeInfo; // only if Len(Name) > 0
    AttrData: TAttrData;}
  end;

C++

struct DECLSPEC_DRECORD TIntfMethodEntryTail
{
public:
    System::Byte Kind;
    TCallConv CC;
    System::Byte ParamCount;
};

Propriétés

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

Description

TIntfMethodEntryTail est utilisé en interne pour stocker des informations RTTI de méthode.

Les structures TIntfMethodEntryTail sont automatiquement insérées par le compilateur Delphi pour toutes les méthodes d'interface qui sont marquées pour émettre des informations RTTI étendues.

N'utilisez pas directement TIntfMethodEntryTail. Utilisez à la place la classe TRttiMethod pour accéder aux informations de méthode associées à une interface Delphi.

Voir aussi