-- DirectoryContexts.mesa (last edited by: Marzullo on: January 4, 1981 2:09 PM)
DIRECTORY
DirectoryInternal USING [Context];
DirectoryContexts: DEFINITIONS =
-- this interface defines the operations on directory contexts
BEGIN
Handle: TYPE = LONG POINTER TO DirectoryInternal.Context;
maxContexts: CARDINAL = 100;
contextTable: LONG POINTER TO ARRAY [0.. maxContexts) OF Handle;
ContextSpace: UNCOUNTED ZONE;
InvalidateContext: PROC [pDC: CARDINAL];
ValidateContext: PROC [context: Handle] RETURNS [Handle];
END.
LOG
Time: August 28, 1980 9:34 AM By: MarzulloAction: Created File
Time: January 4, 1981 2:08 PM By: KeithAction: Changed contextTable to a LONG POINTER.