System.PPAnsiChar

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type PPAnsiChar = ^PAnsiChar;

C++

typedef char * *PPAnsiChar;

Properties

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

Description

Is a pointer to a PAnsiChar.

PPAnsiChar represents a pointer to a PAnsiChar. PPAnsiChar is usually used to reference a C-style array of null-terminated strings of Ansi chars.

See Also