home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Minimalist Clock 1.0.3 / src / edit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-06  |  656 b   |  33 lines  |  [TEXT/CWIE]

  1. /* ----------------------------------------------------------------------
  2. edit.c
  3. ---------------------------------------------------------------------- */
  4.  
  5. #include    "the_defines.h"
  6. #include    "the_globals.h"
  7. #include    "the_prototypes.h"
  8.  
  9. /* ----------------------------------------------------------------------
  10. DoMenuEdit
  11. ---------------------------------------------------------------------- */
  12. void DoMenuEdit(theItem)
  13. int theItem;
  14. {
  15.     switch (theItem)
  16.     {
  17.         case EDIT_UNDO:
  18.             break;
  19.         case EDIT_CUT:
  20.             break;
  21.         case EDIT_COPY:
  22.             break;
  23.         case EDIT_PASTE:
  24.             break;
  25.         case EDIT_CLEAR:
  26.             break;
  27.         case EDIT_SELECT_ALL:
  28.             break;
  29.         default:
  30.             break;
  31.     }
  32. }
  33.