資源簡介
用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報表取數講解
評論
共有 條評論