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

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 "wsock.h"
  13. RCINCLUDE wsock.dlg
  14. wsockicon ICON wsock.ICO
  15.  
  16. WSockMenu MENU
  17. BEGIN
  18.     POPUP        "&WinSock"
  19.     BEGIN
  20.         MENUITEM "&Check Host Name (gethostbyname)", IDM_HOSTNAME
  21.         MENUITEM SEPARATOR
  22.         MENUITEM "Co&nnect", IDM_CONNECT
  23.         MENUITEM "Connect and &Send", IDM_CONNECTANDSEND
  24.         MENUITEM SEPARATOR
  25.         MENUITEM "&Listen (blocking)", IDM_LISTEN
  26.         MENUITEM "Listen with &Threads", IDM_TLISTEN
  27.         MENUITEM "&Async Listen - (WSA extensions)", IDM_ALISTEN
  28.         MENUITEM "&Cancel async listen", IDM_CANCEL, GRAYED
  29.         MENUITEM "Accept&Ex", IDM_ACCEPTEX
  30.         MENUITEM SEPARATOR
  31.         MENUITEM "Send a message", IDM_SENDTCP, GRAYED
  32.     END
  33.     POPUP        "&Help"
  34.     BEGIN
  35.         MENUITEM "&About Windows Sockets...", IDM_ABOUT
  36.     END
  37. END