PChar

From Free Pascal wiki
Revision as of 18:17, 23 January 2018 by Mathias (talk | contribs)
Jump to navigationJump to search

Template:Pchar

A PChar is Data type and a Pointer to a null-terminated string. The most important application of a PChar is interaction with system libraries like dll's.

Messagebox:

var 
  s: String;
begin
  s := 'Test';
  Application.MessageBox( PChar(s)),'Title', MB_OK );
end;

Declaration:

var 
  p: PChar;

Valid assignments:

   p := 'This is a null-terminated string.';
   p := IntToStr(45);

Invalid assignments:

   p := 45;

The integer value is not casted to a PChar as might be expected.

See also