System.TPCharArray

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TPCharArray = packed array[0..(High(Integer) div SizeOf(PChar))-1] of PChar;

C++

typedef PChar TPCharArray;

Properties

Type Visibility Source Unit Parent
array
typedef
public
System.pas
System.hpp
System System

Description

Represents an array of null-terminated strings.

TPCharArray represents an array of MaxLongint div SizeOf(PChar) C-style null-terminated strings. TPCharArray is used internally for C++ compatibility.

See Also