• 大小: 3.74MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-28
  • 语言: 其他
  • 标签: 聊天  

资源简介

基于进程通信设计的一个聊天室系统,对于操作系统课程设计很有参考价值

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “chat.h“
#include “chatDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CChatApp

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

/////////////////////////////////////////////////////////////////////////////
// CChatApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CChatApp object

CChatApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CChatApp initialization

BOOL CChatApp::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

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

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

     文件       8869  2005-05-12 18:06  chatserver\chatserverDlg.cpp

     文件      54784  2005-05-13 11:22  chatserver\chatserver.opt

     文件       5491  2005-05-12 15:11  chatserver\chatserver.rc

     文件      35724  2005-05-12 15:11  chatserver\chatserver.aps

     文件       1203  2005-05-13 11:22  chatserver\chatserver.clw

     文件       3651  2005-05-10 11:13  chatserver\ReadMe.txt

     文件       1368  2005-05-10 11:13  chatserver\chatserver.h

     文件       2213  2005-05-10 11:13  chatserver\chatserver.cpp

     文件       1102  2005-05-10 11:13  chatserver\StdAfx.h

     文件        212  2005-05-10 11:13  chatserver\StdAfx.cpp

     文件        402  2005-05-10 11:13  chatserver\res\chatserver.rc2

     文件       1078  2005-05-10 11:13  chatserver\res\chatserver.ico

     目录          0  2005-05-10 11:13  chatserver\res

     文件       4231  2005-05-10 11:13  chatserver\chatserver.dsp

     文件        543  2005-05-10 11:13  chatserver\chatserver.dsw

     文件      66560  2005-05-13 11:22  chatserver\chatserver.ncb

     文件       2664  2005-05-12 15:11  chatserver\Debug\chatserver.res

     文件     222208  2005-05-13 10:59  chatserver\Debug\vc60.idb

     文件    5584196  2005-05-10 11:14  chatserver\Debug\chatserver.pch

     文件     364544  2005-05-12 18:06  chatserver\Debug\vc60.pdb

     文件     106508  2005-05-10 11:14  chatserver\Debug\StdAfx.obj

     文件     110648  2005-05-12 18:06  chatserver\Debug\chatserver.exe

     文件     402432  2005-05-12 18:06  chatserver\Debug\chatserver.pdb

     文件      15739  2005-05-10 11:31  chatserver\Debug\chatserver.obj

     文件     394836  2005-05-12 18:06  chatserver\Debug\chatserver.ilk

     文件      46199  2005-05-12 18:06  chatserver\Debug\chatserverDlg.obj

     目录          0  2005-05-10 11:13  chatserver\Debug

     文件        733  2005-05-10 11:14  chatserver\Resource.h

     文件        981  2005-05-12 18:06  chatserver\chatserver.plg

     文件       1858  2005-05-10 11:31  chatserver\chatserverDlg.h

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

评论

共有 条评论