System.ObjAuto.TReturnInfo

De RAD Studio API Documentation
Aller à : navigation, rechercher

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

Propriétés

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

Description

Représente les informations de retour d'une méthode.

TReturnInfo est utilisé en interne (dans la fonction ObjectInvoke).

Voir aussi