home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1987-11-04 | 1.1 KB | 43 lines |
- DEFINITION MODULE ToolMenuCommands;
-
- (*
- Title : TOOLMENU.DEF
- LastEdit : 10/31/87
- Author : Russell G. Osterlund, Jr.
- System : LOGITECH MODULA-2/86, REPERTOIRE, BlackBeard
-
- This product has been developed with the use of, and embodies portions of,
- LOGITECH software development tools - compiler, linker, and M2MAKE.
-
- *)
-
- FROM ToolTypes IMPORT
- DirectoryRecPtr;
-
- PROCEDURE HelpCommand (LeftDirectory,
- RightDirectory: DirectoryRecPtr);
-
- PROCEDURE CopyCommand (directory: DirectoryRecPtr);
-
- PROCEDURE MoveCommand (directory: DirectoryRecPtr);
-
- PROCEDURE DeleteCommand (directory: DirectoryRecPtr);
-
- PROCEDURE SortCommand ();
-
- PROCEDURE AttributesCommand (directory: DirectoryRecPtr);
-
- PROCEDURE EditListCommand (LeftDirectory,
- RightDirectory: DirectoryRecPtr;
- edit: BOOLEAN);
-
- PROCEDURE RenameCommand (directory: DirectoryRecPtr);
-
- PROCEDURE ExecuteCommand (LeftDirectory,
- RightDirectory: DirectoryRecPtr);
-
- PROCEDURE OtherCommand (LeftDirectory,
- RightDirectory: DirectoryRecPtr);
-
- END ToolMenuCommands.