SERVER.RC
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

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