Next: , Previous: PtrInt, Up: Reference



PtrWord

(Under construction.)

Synopsis

     type
       PtrWord = PtrCard;

Description

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

Conforming to

PtrWord is a GNU Pascal extension.

Example

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

See also

PtrCard, Integer Types.