资源简介

基于CSocket的多人聊天室,服务-客户端分开的,服务端用简单的单链表穿起来。

资源截图

代码片段和文件信息

// c.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “c.h“
#include “cDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CCApp

BEGIN_MESSAGE_MAP(CCApp CWinApp)
//{{AFX_MSG_MAP(CCApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CCApp construction

CCApp::CCApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CCApp object

CCApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CCApp initialization

BOOL CCApp::InitInstance()
{
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}

// 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

CCDlg 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;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      35768  2008-07-23 03:45  基于CSocket的TCP多人聊天程序\C客户端\c.aps

     文件       1061  2008-07-23 03:45  基于CSocket的TCP多人聊天程序\C客户端\c.clw

     文件       2054  2008-07-22 18:33  基于CSocket的TCP多人聊天程序\C客户端\c.cpp

     文件       4085  2008-07-22 19:40  基于CSocket的TCP多人聊天程序\C客户端\c.dsp

     文件        527  2008-07-22 18:33  基于CSocket的TCP多人聊天程序\C客户端\c.dsw

     文件       1269  2008-07-22 18:33  基于CSocket的TCP多人聊天程序\C客户端\c.h

     文件      58368  2008-07-23 03:45  基于CSocket的TCP多人聊天程序\C客户端\c.ncb

     文件      49664  2008-07-23 03:45  基于CSocket的TCP多人聊天程序\C客户端\c.opt

     文件        236  2008-07-23 03:45  基于CSocket的TCP多人聊天程序\C客户端\c.plg

     文件       5077  2008-07-23 03:45  基于CSocket的TCP多人聊天程序\C客户端\c.rc

     文件       5178  2008-07-23 03:19  基于CSocket的TCP多人聊天程序\C客户端\cDlg.cpp

     文件       1405  2008-07-23 02:57  基于CSocket的TCP多人聊天程序\C客户端\cDlg.h

     文件       3489  2008-07-22 18:33  基于CSocket的TCP多人聊天程序\C客户端\ReadMe.txt

     文件       1078  2008-07-22 18:33  基于CSocket的TCP多人聊天程序\C客户端\res\c.ico

     文件        393  2008-07-22 18:33  基于CSocket的TCP多人聊天程序\C客户端\res\c.rc2

     文件        862  2008-07-22 18:35  基于CSocket的TCP多人聊天程序\C客户端\resource.h

     文件       1014  2008-07-22 19:41  基于CSocket的TCP多人聊天程序\C客户端\sock.cpp

     文件       1187  2008-07-22 18:42  基于CSocket的TCP多人聊天程序\C客户端\sock.h

     文件        203  2008-07-22 18:33  基于CSocket的TCP多人聊天程序\C客户端\StdAfx.cpp

     文件       1047  2008-07-22 18:33  基于CSocket的TCP多人聊天程序\C客户端\StdAfx.h

     文件       3489  2008-07-22 16:12  基于CSocket的TCP多人聊天程序\S服务端\ReadMe.txt

     文件       1078  2008-07-22 16:12  基于CSocket的TCP多人聊天程序\S服务端\res\s.ico

     文件        393  2008-07-22 16:12  基于CSocket的TCP多人聊天程序\S服务端\res\s.rc2

     文件        770  2008-07-22 16:16  基于CSocket的TCP多人聊天程序\S服务端\resource.h

     文件      20848  2008-07-23 03:48  基于CSocket的TCP多人聊天程序\S服务端\s.aps

     文件        984  2008-07-23 03:48  基于CSocket的TCP多人聊天程序\S服务端\s.clw

     文件       2054  2008-07-22 16:12  基于CSocket的TCP多人聊天程序\S服务端\s.cpp

     文件       4344  2008-07-22 20:02  基于CSocket的TCP多人聊天程序\S服务端\s.dsp

     文件        527  2008-07-22 16:12  基于CSocket的TCP多人聊天程序\S服务端\s.dsw

     文件       1269  2008-07-22 16:12  基于CSocket的TCP多人聊天程序\S服务端\s.h

............此处省略24个文件信息

评论

共有 条评论