home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddesampl.zip / CLIENT.RC < prev    next >
Text File  |  1993-11-09  |  1KB  |  47 lines

  1. /*
  2.  *    Copyright (C) 1993 IBM Corporation
  3.  *
  4.  *    DISCLAIMER OF WARRANTIES.  The following [enclosed] code is sample
  5.  *    code created by IBM Corporation.  This sample code is not part of
  6.  *    any standard or IBM product and is provided to you solely for the
  7.  *    purpose of assisting you in the development of your applications.
  8.  *    The code is provided "AS IS", without warranty of any kind.
  9.  *    IBM shall not be liable for any damages arising out of your
  10.  *    use of the sample code, even if they have been advised of the
  11.  *    possibility of such damages.
  12.  */
  13.  
  14. #define INCL_NLS   /* support DBCS os/2 versions flag FCF_DBE_APPSTAT */
  15. #define INCL_WIN
  16. #include <os2.h>
  17.  
  18. #include "resource.h"
  19.  
  20.  
  21. ICON    ID_MAINWND PRELOAD CLIENT.ICO
  22.  
  23. MENU ID_MAINWND
  24. {
  25.     SUBMENU "~DDE",   IDM_DDE
  26.     {
  27.     MENUITEM "~Start Conversation", IDM_STARTCONV
  28.     MENUITEM "Sto~p Conversation",    IDM_STOPCONV,,MIA_DISABLED
  29.     MENUITEM SEPARATOR
  30.     MENUITEM "~Request data...",    IDM_REQUEST,,MIA_DISABLED
  31.     MENUITEM "~Poke data...",    IDM_POKE,,MIA_DISABLED
  32.     MENUITEM SEPARATOR
  33.     MENUITEM "Hot link...",        IDM_ADVISE,, MIA_DISABLED
  34.     MENUITEM "End hot link...",    IDM_ENDADVISE,,MIA_DISABLED
  35.     MENUITEM SEPARATOR
  36.     MENUITEM "Trigger Chain...",    IDM_TRIGCHN,,MIA_DISABLED
  37.     MENUITEM "Alarm...",        IDM_ALARM,,MIA_DISABLED
  38.     }
  39. }
  40.  
  41. ACCELTABLE ID_MAINWND PRELOAD
  42. {
  43.     VK_F3, ID_EXITPROGRAM, VIRTUALKEY
  44. }
  45.  
  46. rcinclude client.dlg
  47.