资源简介
聊天程序,利用TCP/IP完成双向数据收发。
代码片段和文件信息
// Info.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Info.h“
#include “InfoDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CInfoApp
BEGIN_MESSAGE_MAP(CInfoApp CWinApp)
//{{AFX_MSG_MAP(CInfoApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CInfoApp construction
CInfoApp::CInfoApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CInfoApp object
CInfoApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CInfoApp initialization
BOOL CInfoApp::InitInstance()
{
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}
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
CInfoDlg dlg;
m_pMainWnd = &dlg;
CString str;
eee=OpenMutex(MUTEX_ALL_ACCESSfalsestr);
if(eee==NULL)
{
eee=CreateMutex(NULLtruestr);
m=TRUE;
}
else
{
m=FALSE;
}
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;
}
int CInfoApp::ExitInstance()
{
if(eee !=NULL)
ReleaseMutex(eee);
return CWinApp::ExitInstance();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2415 2008-10-18 21:58 chat\Info.clw
文件 2431 2004-07-11 13:28 chat\Info.cpp
文件 3703 2005-11-28 19:17 chat\Info.dsp
文件 531 2004-07-11 13:28 chat\Info.dsw
文件 1371 2004-07-11 13:27 chat\Info.h
文件 148480 2008-10-18 22:05 chat\Info.ncb
文件 866856 2008-10-18 21:59 chat\Info.aps
文件 781 2008-10-18 22:00 chat\Info.plg
文件 7965 2008-10-18 21:59 chat\Info.rc
文件 17468 2008-10-18 22:00 chat\InfoDlg.cpp
文件 49664 2008-10-18 22:04 chat\Info.opt
文件 1541 2004-07-11 13:27 chat\MySocket.cpp
文件 1382 2007-10-27 21:51 chat\MySocket.h
文件 3543 2004-07-11 13:27 chat\ReadMe.txt
文件 206 2004-07-11 13:28 chat\StdAfx.cpp
文件 1102 2004-07-11 13:27 chat\StdAfx.h
文件 11776 2004-07-11 13:28 chat\res\135.avi
文件 4152 2004-07-11 13:28 chat\res\49.bmp
文件 4152 2004-07-11 13:28 chat\res\85.bmp
文件 30414 2004-07-11 13:28 chat\res\about.bmp
文件 193194 2004-07-11 13:28 chat\res\beijing.bmp
文件 29718 2004-07-11 13:28 chat\res\bitmap3.bmp
文件 553302 2004-07-11 13:28 chat\res\eee.bmp
文件 1078 2004-07-11 13:28 chat\res\Info.ico
文件 396 2004-07-11 13:28 chat\res\Info.rc2
文件 37494 2004-07-11 13:28 chat\res\ti
文件 653 2004-08-22 00:46 chat\res\xptheme.bin
文件 1078 2008-10-18 15:17 chat\res\HOUSE.ICO
文件 837080 2008-10-18 21:03 chat\Release\Info.res
文件 1546849 2008-10-17 12:59 chat\Release\StdAfx.sbr
............此处省略16个文件信息
相关资源
- 基于socket和opencv在linux中实现摄像头实
- HJ212TCPServerMFC.rar(MFC HJ212TCP Socket服务
- HJ212TCPServerC.rar(TCP Socket多线程服务端
- C++ 纯SOCKET实现FTP客户端类
- MFC网络编程源代码vc网络编程mfc sock
- VC6.0下的socket编程 实现了UDP数据传输
- ABB机械臂与PC通讯(socket),附RAPID和
- C++多线程SOCKET收发
- c++ websocket服务器和html客户端
- vc++ socket编程(服务器/客户端)
- Windows Sockets 规范及应用-Windows网络编
- Windows Sockets 编程及UR机器人通信数据
- c++ 文件传输项目源码(附socket服务器
- 基于C#的Socket TCP通信,服务端源代码
- VC++基于SOCKET的简易网络聊天室
- qt简易基于socket的聊天室系统(源码
- VC Socket GETPOST发送HTTP请求
- TCP/IP Socket操作(c++在线聊天源码)
- tcp SOCKET 聊天室(含服务端源码、客户
- socket(TCP)相互通讯
- Opencv结合socket进行视频传输(TCP协议
- c++ socket最简单(含服务端以及客户端
- Linux下的Socket通信
- c++ socket通信 入门级
- VC6写的Socket API封装类非MFC
- c++ socket 服务端客户端实现源码
- 使用C++实现Socket 2人聊天
- 学生机和老师机
- 利用MFC的Csocket类实现C/S网络通信
- Linux C++ TCP Socket传输文件或图片
评论
共有 条评论