进程通信设计----聊天室


基于进程通信设计的一个聊天室系统,对于操作系统课程设计很有参考价值
资源截图
代码片段和文件信息
// 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  chatserverchatserverDlg.cpp

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

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

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

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

     文件       3651  2005-05-10 11:13  chatserverReadMe.txt

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

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

     文件       1102  2005-05-10 11:13  chatserverStdAfx.h

     文件        212  2005-05-10 11:13  chatserverStdAfx.cpp

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

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

     目录          0  2005-05-10 11:13  chatserver
es

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

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

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

     文件       2664  2005-05-12 15:11  chatserverDebugchatserver.res

     文件     222208  2005-05-13 10:59  chatserverDebugvc60.idb

     文件    5584196  2005-05-10 11:14  chatserverDebugchatserver.pch

     文件     364544  2005-05-12 18:06  chatserverDebugvc60.pdb

     文件     106508  2005-05-10 11:14  chatserverDebugStdAfx.obj

     文件     110648  2005-05-12 18:06  chatserverDebugchatserver.exe

     文件     402432  2005-05-12 18:06  chatserverDebugchatserver.pdb

     文件      15739  2005-05-10 11:31  chatserverDebugchatserver.obj

     文件     394836  2005-05-12 18:06  chatserverDebugchatserver.ilk

     文件      46199  2005-05-12 18:06  chatserverDebugchatserverDlg.obj

     目录          0  2005-05-10 11:13  chatserverDebug

     文件        733  2005-05-10 11:14  chatserverResource.h

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

     文件       1858  2005-05-10 11:31  chatserverchatserverDlg.h

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

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)