资源简介
实现点对点通信,可直接运行,方便快捷,可扩展性强,适合初学者使用。
代码片段和文件信息
// EchoServer.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “EchoServer.h“
#include “EchoServerDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CEchoServerApp
BEGIN_MESSAGE_MAP(CEchoServerApp CWinApp)
//{{AFX_MSG_MAP(CEchoServerApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CEchoServerApp construction
CEchoServerApp::CEchoServerApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CEchoServerApp object
CEchoServerApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CEchoServerApp initialization
BOOL CEchoServerApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
if(AfxSocketInit()==FALSE)
{
AfxMessageBox(“Sockets Could Not Be Initialized“);
return FALSE;
}
CEchoServerDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 21388 2005-11-10 16:13 EchoServer\EchoServer.aps
文件 1567 2005-11-10 16:13 EchoServer\EchoServer.clw
文件 2235 2005-11-09 16:23 EchoServer\EchoServer.cpp
文件 4367 2005-11-09 15:58 EchoServer\EchoServer.dsp
文件 545 2005-11-09 15:51 EchoServer\EchoServer.dsw
文件 1368 2005-11-09 15:51 EchoServer\EchoServer.h
文件 66560 2005-11-10 16:13 EchoServer\EchoServer.ncb
文件 53760 2005-11-10 16:13 EchoServer\EchoServer.opt
文件 1989 2005-11-10 16:13 EchoServer\EchoServer.plg
文件 5647 2005-11-10 11:36 EchoServer\EchoServer.rc
文件 6203 2005-11-09 18:06 EchoServer\EchoServerDlg.cpp
文件 1649 2005-11-09 16:56 EchoServer\EchoServerDlg.h
文件 2032 2005-11-10 11:48 EchoServer\MyEchoSocket.cpp
文件 1467 2005-11-09 18:06 EchoServer\MyEchoSocket.h
文件 3651 2005-11-09 15:51 EchoServer\ReadMe.txt
目录 0 2005-11-10 16:14 EchoServer\Release\
文件 24576 2005-11-10 16:13 EchoServer\Release\EchoServer.exe
目录 0 2005-11-10 11:56 EchoServer\res\
文件 1078 2005-11-09 15:51 EchoServer\res\EchoServer.ico
文件 402 2005-11-09 15:51 EchoServer\res\EchoServer.rc2
文件 872 2005-11-09 16:42 EchoServer\resource.h
文件 212 2005-11-09 15:51 EchoServer\StdAfx.cpp
文件 1074 2005-11-09 16:35 EchoServer\StdAfx.h
目录 0 2005-11-10 16:14 EchoServer\
相关资源
- C Socket通信多线程数据双向收发VS201
- 数据结构—图书馆管理系统C++编写
- 基于TAO的CORBA程序设计
- UDP实现广播通信 MFC
- Dialog下创建 MFC OpenGL子窗口
- C++-小精灵程序
- VC++软键盘源码和QQ软键盘差不多哦
- QM算法C++实现
- 仿雷电游戏OpenGL源码C++版
- arcgis engine C++开发
- c++ 命令设计模式实现撤销重做(CAD系
- QML_MVC_Demo
- VC++制作程序安装向导完整源码实现
- c++常用代码
- Windows屏幕截图工具C++源代码
- 8数码问题的c++代码
- AES加密算法C++语言实现
- 一个监护仪上位机C++程序
- 简易的VC++点对点文件传输
- MFC实现计算器 vC++
- C++课程设计——银行储蓄管理系统
- VC++工资管理系统
- BMP图像文件读写操作类,C++实现,支
- VC++点阵字生成器(MFC)
- 利用MFC实现简单的住房系统
- Linux c++多线程串口编程demo
- C++卫星定位程序--通过卫星星历确定卫
- 扫雷游戏c++源码实现
- Matlab笔记——使用GPU运算、调用C/C+
- C++ UDP SOCKET 简单网络通讯
评论
共有 条评论