home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / sdk / win32s / ut / samples / utsample / utsamp.rc < prev    next >
Encoding:
Text File  |  1995-07-11  |  706 b   |  32 lines

  1. /***********************************************************\
  2. * UTSamp.rc: Resource script for Universal Thunks Sample    *
  3. *                                                           *
  4. \***********************************************************/
  5.  
  6. #include <windows.h>
  7. #include "utsamp.h"
  8. #include "utsamp.dlg"
  9.  
  10. UTSampIcon ICON UTSamp.ico
  11.  
  12. UTSampMenu MENU
  13.  {
  14.   POPUP "&File"
  15.    {
  16.     MENUITEM "E&xit",        IDM_EXIT
  17.    }
  18.  
  19.   POPUP "&Call"
  20.    {
  21.     MENUITEM "&Get User",    IDM_GETUSER
  22.     MENUITEM "&Free Ram",    IDM_GETMEM
  23.     MENUITEM "Callback&1",      IDM_CALLBACK1
  24.     MENUITEM "Callback&2",      IDM_CALLBACK2
  25.    }
  26.  
  27.   POPUP "&Help"
  28.    {
  29.     MENUITEM "&About",    IDM_ABOUT
  30.    }
  31.  }
  32.