System.ObjAuto.TReturnInfo

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TReturnInfo = packed record
    Version: Byte; // Must be 3
    CallingConvention: System.TypInfo.TCallConv;
    ReturnType: ^PTypeInfo;
    ParamSize: Word;
    ParamCount: Byte;
  end;

C++

struct DECLSPEC_DRECORD TReturnInfo
{
public:
    System::Byte Version;
    System::Typinfo::TCallConv CallingConvention;
    System::Typinfo::PTypeInfo *ReturnType;
    System::Word ParamSize;
    System::Byte ParamCount;
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
System.ObjAuto.pas
System.ObjAuto.hpp
System.ObjAuto System.ObjAuto

Beschreibung

Repräsentiert die Rückgabeinformationen einer Methode.

TReturnInfo wird intern (in der Funktion ObjectInvoke) verwendet.

Siehe auch