home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / source / luschsrc.sit / edit.h < prev    next >
Text File  |  1990-05-23  |  574b  |  26 lines

  1. /********************************************************************************
  2.  *    edit.h
  3.  *
  4.  *    Edit Command Header
  5.  *
  6.  *    Written by Paco Xander Nathan
  7.  *    ⌐1990, Motorola Inc.  Public domain source code.
  8.  ********************************************************************************/
  9.  
  10. #define _H_edit
  11.  
  12.  
  13. typedef enum {
  14.     emUndo = 1, emSpace1, 
  15.     emCut, emCopy, emPaste, emClear, emSelAll, emSpace2,
  16.     emShowClip
  17. } emItems;
  18.  
  19.  
  20. /* External Function Prototypes
  21.  */
  22. #ifdef PROTOTYPES
  23. void EditMenu (short theItem);
  24. void EditKeyStroke (WindowPtr theWindow, char theChar);
  25. #endif
  26.