API:System.TypInfo.TProcedureSignature

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TProcedureSignature = packed record
    Flags: Byte; // if 255 then record stops here, with Flags
    CC: TCallConv;
    ResultType: PPTypeInfo;
    ParamCount: Byte;
   {Params: array[1..ParamCount] of TProcedureParam;}
  end;

C++

struct DECLSPEC_DRECORD TProcedureSignature
{
public:
    System::Byte Flags;
    TCallConv CC;
    PTypeInfo *ResultType;
    System::Byte ParamCount;
};

Properties

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

Description

Embarcadero Technologies does not currently have any additional information.