[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
ERRORPTR Pointer to Error Handler Read.Me
Syntax: ErrorPtr
Type: Pointer
Form: Pre-defined Variable
Purpose: This is a pre-defined 32 bit pointer to the Error Handler function.
----------------------------------------------------------------------------
Usage:
TYPE
PtrType = ^Real ; { Define a pointer type }
VAR
AdrPtr : PtrType ; { Define a pointer of type PtrType }
Segment : Integer ; { Segment value }
Offset : Integer ; { Offset value }
BEGIN
AdrPtr^ := ErrorPtr ; { Assign to our pointer }
Segment := Seg (AdrPtr) ; { Get ErrorPtr segment }
Offset := Ofs (AdrPtr) ; { Get ErrorPtr offset }
END.
See Also:
Pointer
Ptr
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson