home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / latour / shopping / shopping.rc < prev   
Text File  |  1996-10-30  |  1KB  |  36 lines

  1. /************************************************************
  2. / Tour of the UICL - Shopping List Example Program
  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 <icconst.h>
  9. #include "shopping.h"
  10.  
  11. #ifdef IC_PM  /* OS/2 Resources */
  12. // #define INCL_WINFRAMEMGR
  13. // #include <os2.h>
  14.  
  15. ICON    ID_THEBOOKICON    .\os2\bookc.ico
  16. BITMAP  ID_THEBOOKBITMAP  .\os2\thebook.bmp
  17.  
  18. #else  /* Windows Resources */
  19.  
  20. #include <windows.h>
  21.  
  22. ID_THEBOOKICON    ICON    .\win\bookc.ico
  23. ID_THEBOOKBITMAP  BITMAP  .\win\thebook.bmp
  24.  
  25. #endif
  26.  
  27. STRINGTABLE PRELOAD
  28.   BEGIN
  29.     IC_ID_OPEN                    ,    "Open the purchase item"
  30.     IC_ID_SAVE                    ,    "Save the purchase item"
  31.     IC_ID_CUT                     ,    "Cut the purchase item"
  32.     IC_ID_COPY                    ,    "Copy the purchase item"
  33.     IC_ID_PASTE                   ,    "Paste the purchase item"
  34.   END
  35.  
  36.