home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / modula2 / library / filetool / toolmenu.def < prev    next >
Text File  |  1987-11-04  |  1KB  |  43 lines

  1. DEFINITION MODULE ToolMenuCommands;
  2.  
  3. (*
  4. Title    : TOOLMENU.DEF
  5. LastEdit : 10/31/87
  6. Author   : Russell G. Osterlund, Jr.
  7. System   : LOGITECH MODULA-2/86, REPERTOIRE, BlackBeard
  8.  
  9. This product has been developed with the use of, and embodies portions of,
  10. LOGITECH software development tools - compiler, linker, and M2MAKE.
  11.  
  12. *)
  13.  
  14. FROM ToolTypes IMPORT
  15.   DirectoryRecPtr;
  16.  
  17. PROCEDURE HelpCommand (LeftDirectory,
  18.                RightDirectory: DirectoryRecPtr);
  19.  
  20. PROCEDURE CopyCommand (directory: DirectoryRecPtr);
  21.  
  22. PROCEDURE MoveCommand (directory: DirectoryRecPtr);
  23.  
  24. PROCEDURE DeleteCommand (directory: DirectoryRecPtr);
  25.  
  26. PROCEDURE SortCommand ();
  27.  
  28. PROCEDURE AttributesCommand (directory: DirectoryRecPtr);
  29.  
  30. PROCEDURE EditListCommand (LeftDirectory,
  31.                RightDirectory: DirectoryRecPtr;
  32.                edit: BOOLEAN);
  33.  
  34. PROCEDURE RenameCommand (directory: DirectoryRecPtr);
  35.  
  36. PROCEDURE ExecuteCommand (LeftDirectory,
  37.               RightDirectory: DirectoryRecPtr);
  38.  
  39. PROCEDURE OtherCommand (LeftDirectory,
  40.             RightDirectory: DirectoryRecPtr);
  41.  
  42. END ToolMenuCommands.
  43.