API:System.TCallDesc

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TCallDesc = packed record
    CallType: Byte;
    ArgCount: Byte;
    NamedArgCount: Byte;
    ArgTypes: array[0..255] of Byte;
  end;

C++

struct DECLSPEC_DRECORD TCallDesc
{
public:
    Byte CallType;
    Byte ArgCount;
    Byte NamedArgCount;
    System::StaticArray<Byte, 256> ArgTypes;
};

Properties

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

Description

Embarcadero Technologies does not currently have any additional information.