home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / genhdrs / cmdhdrs / cmdhdrs.rc < prev    next >
Text File  |  1996-10-29  |  666b  |  29 lines

  1. /**********************************************************
  2. / Reusable Handlers - Simple Command Handler
  3. /
  4. / Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. / Copyright (c) 1997 John Wiley & Sons, Inc. 
  6. / All Rights Reserved.
  7. **********************************************************/
  8. #include "cmdhdrs.h"
  9.  
  10. #ifdef IC_PM /* OS/2 resource */
  11.  
  12. #include <os2.h>
  13.  
  14. MENU ID_POPUP
  15.   BEGIN
  16.     MENUITEM "Beep once",   ID_ONE_BEEP_CMD
  17.     MENUITEM "Beep twice",  ID_TWO_BEEP_CMD
  18.   END
  19.  
  20. #else /* Windows resource */
  21.  
  22. ID_POPUP MENUEX
  23.   BEGIN
  24.     MENUITEM "Beep once",   ID_ONE_BEEP_CMD
  25.     MENUITEM "Beep twice",  ID_TWO_BEEP_CMD
  26.   END
  27.  
  28. #endif
  29.