• 大小: 1.26MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-30
  • 语言: 其他
  • 标签: mfc  

资源简介

TCP客户端与服务器通讯的链接实现了聊天室

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “Client.h“
#include “ClientDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CClientApp

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

/////////////////////////////////////////////////////////////////////////////
// CClientApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CClientApp object

CClientApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CClientApp initialization

BOOL CClientApp::InitInstance()
{
    //加载套接字版本
    wVersionRequested = MAKEWORD( 2 2 );
    
    err = WSAStartup( wVersionRequested &wsaData );
    if ( err != 0 ) {
        /* Tell the user that we could not find a usable */
        /* WinSock DLL.                                  */
        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

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

int CClientApp::ExitInstance() 
{

    if ( LOBYTE( wsaData.wVersion ) != 2 ||
        HIBYTE( wsaData.wVersion ) != 2 ) {
        /* Tell the user that we could not find a usable */
        /* WinSock DLL.                                  */
        WSACleanup( );
        return FALSE; 
    }

return CWinApp::ExitInstance();
}

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

     文件      21500  2015-01-08 11:48  CR18_20150107_张亚洲\Client\Client.aps

     文件       1360  2015-01-08 12:01  CR18_20150107_张亚洲\Client\Client.clw

     文件       2712  2015-01-04 13:40  CR18_20150107_张亚洲\Client\Client.cpp

     文件       4159  2015-01-04 11:33  CR18_20150107_张亚洲\Client\Client.dsp

     文件       1461  2015-01-04 13:40  CR18_20150107_张亚洲\Client\Client.h

     文件        246  2015-01-08 12:04  CR18_20150107_张亚洲\Client\Client.plg

     文件       6097  2015-01-07 21:33  CR18_20150107_张亚洲\Client\Client.rc

     文件      12580  2015-01-08 12:00  CR18_20150107_张亚洲\Client\ClientDlg.cpp

     文件       1903  2015-01-08 11:48  CR18_20150107_张亚洲\Client\ClientDlg.h

     文件       3579  2015-01-04 11:33  CR18_20150107_张亚洲\Client\ReadMe.txt

     文件       1078  2015-01-04 11:33  CR18_20150107_张亚洲\Client\res\Client.ico

     文件        398  2015-01-04 11:33  CR18_20150107_张亚洲\Client\res\Client.rc2

     文件        960  2015-01-07 11:11  CR18_20150107_张亚洲\Client\resource.h

     文件        208  2015-01-04 11:33  CR18_20150107_张亚洲\Client\StdAfx.cpp

     文件       1257  2015-01-08 11:50  CR18_20150107_张亚洲\Client\StdAfx.h

     文件       3579  2015-01-04 11:32  CR18_20150107_张亚洲\Server\ReadMe.txt

     文件       1078  2015-01-04 11:32  CR18_20150107_张亚洲\Server\res\Server.ico

     文件        398  2015-01-04 11:32  CR18_20150107_张亚洲\Server\res\Server.rc2

     文件        776  2015-01-05 22:47  CR18_20150107_张亚洲\Server\resource.h

     文件      20816  2015-01-06 12:56  CR18_20150107_张亚洲\Server\Server.aps

     文件       1165  2015-01-07 11:55  CR18_20150107_张亚洲\Server\Server.clw

     文件       2782  2015-01-04 13:25  CR18_20150107_张亚洲\Server\Server.cpp

     文件       4159  2015-01-04 11:32  CR18_20150107_张亚洲\Server\Server.dsp

     文件        734  2015-01-04 11:33  CR18_20150107_张亚洲\Server\Server.dsw

     文件       1455  2015-01-04 13:24  CR18_20150107_张亚洲\Server\Server.h

     文件     140288  2015-01-08 12:21  CR18_20150107_张亚洲\Server\Server.ncb

     文件      67584  2015-01-08 12:21  CR18_20150107_张亚洲\Server\Server.opt

     文件        246  2015-01-08 12:21  CR18_20150107_张亚洲\Server\Server.plg

     文件       5347  2015-01-06 11:51  CR18_20150107_张亚洲\Server\Server.rc

     文件      14173  2015-01-08 12:20  CR18_20150107_张亚洲\Server\ServerDlg.cpp

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

评论

共有 条评论