System.PPChar

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

PUnknown      = ^IUnknown;
PPUnknown     = ^PUnknown;
PPWideChar    = ^PWideChar;

C++

typedef PChar*               PPChar;           //

Properties

Type Visibility Source Unit Parent
pointer
typedef
public
System.pas
sysmac.h
System System

Description

Is a pointer to a PWideChar.

PPChar represents a pointer to a PWideChar. PPChar is usually used to reference a C-style array of null-terminated strings of UTF16 chars.

See Also