-- Copyright (C) 1984  by Xerox Corporation. All rights reserved. 
-- NetDirBuilderOps.Mesa, HGM, 30-Jun-84 18:51:26

DIRECTORY
  Window USING [Handle];

NetDirBuilderOps: DEFINITIONS =
  BEGIN

  log: Window.Handle;
  debug, stopThisNonsense: BOOLEAN;

  CheckPassword: PROCEDURE RETURNS [BOOLEAN];
  Lock, Abort, Unlock: PROCEDURE RETURNS [BOOLEAN];
  FindVersionNumber: PROCEDURE [LONG STRING] RETURNS [BOOLEAN];
  GetNewVersionNumber: PROCEDURE RETURNS [CARDINAL];
  BuildOldDirectory: PROCEDURE RETURNS [BOOLEAN];
  BuildNewDirectory: PROCEDURE RETURNS [BOOLEAN];
  SendOutDirectories: PROCEDURE;

  END.