home *** CD-ROM | disk | FTP | other *** search
- /********************************************************************************
- * edit.h
- *
- * Edit Command Header
- *
- * Written by Paco Xander Nathan
- * ⌐1990, Motorola Inc. Public domain source code.
- ********************************************************************************/
-
- #define _H_edit
-
-
- typedef enum {
- emUndo = 1, emSpace1,
- emCut, emCopy, emPaste, emClear, emSelAll, emSpace2,
- emShowClip
- } emItems;
-
-
- /* External Function Prototypes
- */
- #ifdef PROTOTYPES
- void EditMenu (short theItem);
- void EditKeyStroke (WindowPtr theWindow, char theChar);
- #endif
-