[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

9.209 PtrInt

(Under construction.)

Synopsis

 
type
  PtrCard = Integer (BitSizeOf (Pointer));

Description

A signed integer type of the same size as a pointer.

Conforming to

Example

 
program PtrIntDemo;
var
  a: PtrInt;
  p: Pointer;
begin
  GetMem (p, 10);
  a := PtrInt (p);
  Inc (a);
  p := Pointer (a)
end.

See also



This document was generated by Frank Heckenbach on May, 10 2002 using texi2html