资源简介
用winsock实现的聊天程序
代码片段和文件信息
// MyQQ.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “MyQQ.h“
#include “MyQQDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMyQQApp
BEGIN_MESSAGE_MAP(CMyQQApp CWinApp)
//{{AFX_MSG_MAP(CMyQQApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMyQQApp construction
CMyQQApp::CMyQQApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMyQQApp object
CMyQQApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CMyQQApp initialization
BOOL CMyQQApp::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
CMyQQDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1078 2003-04-05 09:22 socket_chat\res\MyQQ.ico
文件 396 2003-04-05 09:22 socket_chat\res\MyQQ.rc2
目录 0 2003-04-10 14:49 socket_chat\res
文件 2916 2004-10-04 21:33 socket_chat\Cn700.com.txt
文件 22572 2005-07-03 13:51 socket_chat\MyQQ.aps
文件 2153 2005-07-03 13:55 socket_chat\MyQQ.clw
文件 2129 2003-04-05 09:22 socket_chat\MyQQ.cpp
文件 4120 2003-04-09 18:54 socket_chat\MyQQ.dsp
文件 533 2003-04-05 09:22 socket_chat\MyQQ.dsw
文件 1302 2003-04-05 09:22 socket_chat\MyQQ.h
文件 91136 2005-07-03 13:55 socket_chat\MyQQ.ncb
文件 54784 2005-07-03 13:55 socket_chat\MyQQ.opt
文件 244 2005-07-03 13:51 socket_chat\MyQQ.plg
文件 7003 2003-04-15 11:00 socket_chat\MyQQ.rc
文件 31020 2003-04-15 10:59 socket_chat\MyQQDlg.cpp
文件 2743 2003-04-15 10:57 socket_chat\MyQQDlg.h
文件 3543 2003-04-05 09:22 socket_chat\ReadMe.txt
文件 1508 2003-04-10 19:07 socket_chat\resource.h
文件 206 2003-04-05 09:22 socket_chat\StdAfx.cpp
文件 1102 2003-04-05 09:22 socket_chat\StdAfx.h
目录 0 2006-03-26 19:45 socket_chat
----------- --------- ---------- ----- ----
230706 22
- 上一篇:cutecom-0.20.0.tar.gz
- 下一篇:用友UFO报表取数讲解
相关资源
- QT下实现类似QQ聊天窗口tab控件
- 基于socket的聊天程序报告
- WebSocket+Tomcat8实现-Web版即时聊天室
- qt TCP网络编程与聊天室的实现
- 基于OpenSSL的安全聊天系统
- 用bootstrap 搭建响应式手机软件交谈聊
- Lsd基于TCP实现聊天系统
- LoadRunner_Winsocket协议知识总结(修正版
- 对聊天软件qq的UML建模
- 支持并发的多人聊天程序
- 基于QT局域网聊天系统毕业论文
- VC编写的简单聊天程序
- 聊天机器人2002.rar
- QQ聊天记录强行查看器.rar
- 局域网上聊天室程序源码UDP+组播。实
- Qt实现Winsock网络编程—Tcp服务端和
- Chrome插件-《一叶》在任意网页开启实
- JwChat极简聊天框组件 v0.2.42
- 仿QQ VS2010聊天程序服务器端、客户端
- 聊天气泡图片
- .Net MVC5下SignalR简单web即时聊天小程度
- Qt实现基于G.729AG729A的语音聊天
- 一个基于QT简单的仿QQ聊天软件
- 基于QT聊天室
- 聊天室小程序源代码两个
- PB11开发聊天程序, 仿QQ聊天界面,
- Web在线聊天完整源码
- QQ聊天界面iOS源代码素材
- Delphi视频语音聊天 服务与客户端源程
- vue--网页微信聊天功能
评论
共有 条评论