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

代码片段和文件信息
// 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个文件信息
相关资源
- 通信软件的具体实例──基于Socket的
- 用VC 编写的仿QQ聊天室程序源代码
- Qt局域网聊天软件
- websocket实现一对一聊天
- QT局域网聊天系统(基于QT5.修改过)
- 基于swing的简单聊天器(兼传输文件)
- 飞秋FeiQ 兼容qq和飞鸽传书功能
- 基于CSocket的多人聊天室
- mfc聊天室
- irc聊天室
- Scratch案例:聊天交互 .sb2
- 微信聊天机器人源码
- Axure原型(IM聊天工具PC端).rp
- swift-模仿类似聊天的UI
- 易语言服务器源码易语言简易聊天室
- 易语言P2P聊天源码
- 嵌入式局域网聊天系统客户端
- QQ米i吗破解
- 漫言阁个人博客 V3.0 全功能版
- GG2014版源码。仿QQ聊天软件
- SignalR net版本的在线聊天室
- linux网络聊天室
- 基于ajax的web聊天室
- FLASH局域网免服务器P2P聊天室源码(
- 易语言客户端源码易语言服务端源码
- 易语言易聊天客户端源码易语言易聊
- 易语言聊天室客户源码易语言聊天室
- .net 实现 简单的QQ聊天
- 利用同步TCP编写网络聊天程序
- 微信机器人 v3.5绿色免费版.zip
评论
共有 条评论