home *** CD-ROM | disk | FTP | other *** search
- /* --------------------------------------------------------------------------
- * command.h: Copyright (c) Mark P Jones 1991-1993. All rights reserved.
- * See goferite.h for details and conditions of use etc...
- * Gofer version 2.28 January 1993
- *
- * Interpreter command structure
- * ------------------------------------------------------------------------*/
-
- typedef Int Command;
-
- struct cmd {
- String cmdString;
- Command cmdCode;
- };
-
- extern Command readCommand Args((struct cmd *, Char, Char));
-
- #define EDIT 0
- #define FIND 1
- #define LOAD 2
- #define ALSO 3
- #define PROJECT 4
- #define RELOAD 5
- #define EVAL 6
- #define TYPEOF 7
- #define HELP 8
- #define NAMES 9
- #define BADCMD 10
- #define SET 11
- #define QUIT 12
- #define SYSTEM 13
- #define CHGDIR 14
- #define INFO 15
- #define NOCMD 16
-
- /* Interfaces to Mac unload dialog */
- #if MAC
- #define UNLOAD 17
- #endif
-
- /*-------------------------------------------------------------------------*/
-