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

9.207 PtrCard

(Under construction.)

Synopsis

 
type
  PtrCard = Cardinal (BitSizeOf (Pointer));

Description

An unsigned integer type of the same size as a pointer.

Conforming to

Example

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

See also



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