home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / ipc / ddeml / server / server.rc < prev    next >
Text File  |  1997-10-05  |  2KB  |  47 lines

  1.  
  2. //-----------------------------------------------------------------------------
  3. // This is a part of the Microsoft Source Code Samples.
  4. // Copyright (C) 1993-1997 Microsoft Corporation.
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to
  8. // Microsoft Development Tools and/or WinHelp documentation.
  9. // See these sources for detailed information regarding the
  10. // Microsoft samples programs.
  11. //-----------------------------------------------------------------------------
  12.  
  13. #include "windows.h"
  14. #include "server.h"
  15.  
  16. server ICON "server.ico"
  17.  
  18. ServerMenu MENU
  19. BEGIN
  20.     POPUP               TEXT("&Options")
  21.     BEGIN
  22.         MENUITEM        TEXT("&Change Data"),                  IDM_CHANGEDATA
  23.         MENUITEM        TEXT("Data Render &Delay..."),         IDM_RENDERDELAY
  24.         MENUITEM        TEXT("Set &Topic..."),                 IDM_SETTOPIC
  25.         MENUITEM        TEXT("Set &Server..."),                IDM_SETSERVER
  26.         MENUITEM        TEXT("Set Context &Filter..."),        IDM_CONTEXT
  27.         MENUITEM        TEXT("&Use Appowned handles"),         IDM_APPOWNED
  28.         MENUITEM        SEPARATOR
  29.         MENUITEM        TEXT("&Runaway Active"),               IDM_RUNAWAY
  30.         MENUITEM        TEXT("&Block all callbacks"),          IDM_BLOCKALLCBS
  31.         MENUITEM        TEXT("&Enable all callbacks"),         IDM_UNBLOCKALLCBS
  32.         MENUITEM        TEXT("Enable &one callback"),          IDM_ENABLEONECB
  33.         MENUITEM        TEXT("Block all after &next callback"),IDM_BLOCKNEXTCB
  34.         MENUITEM        TEXT("&Terminate service on next callback"),   IDM_TERMNEXTCB
  35.     END
  36.     MENUITEM            TEXT("&About..."),                     IDM_ABOUT
  37. END
  38.  
  39.  
  40. STRINGTABLE
  41. BEGIN
  42.  
  43. IDS_BADLENGTH      , TEXT("Invalid length value string.  Reenter or cancel.")
  44.  
  45. END
  46. #include "server.dlg"
  47.