System.ObjAuto.TReturnInfo

From RAD Studio API Documentation
Jump to: navigation, search

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

Properties

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

Description

Represents the return information of a method.

TReturnInfo is used internally (in the ObjectInvoke function).

See Also