资源简介
基于进程通信设计的一个聊天室系统,对于操作系统课程设计很有参考价值
代码片段和文件信息
// 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个文件信息
相关资源
- 仿腾讯QQ的一个及时聊天系统
- syc的vc局域网聊天室源码
- 仿QQ代码,实现了登入注册的聊天功能
- springboot+websocket实现聊天室
- 基于socket的多线程QQ聊天系统(代码
- 局域网QQ聊天项目
- 局域网聊天qq
- 网络聊天室VC 6.0
- libcurl+图灵机器人api编写的只能聊天系
- 仿微信聊天软件Socket实现包含客户端
- 简易聊天工具计算机网络课设
- 聊天界面源码
- 红蜻蜓聊天室4.00
- 多线程创建的聊天小软件
- 网络课程设计 基于c/s聊天系统
- websocket 1V1聊天室
- ios应用源码之第一个iphone小程序实现
- 微信聊天记录做成词云的私货.rar
- 安卓简单漂亮的日记本含图灵机器人
- Openfire插件开发
- 局域网简易聊天室+基于QT4.8.3+源码
- socket网络编程,可以实现聊天系统,
- 简单的在线聊天室实现群聊和单聊,
- 微软小冰 技术论文
- Qt点对点语音聊天
- .net core 2.1 signalr 点对点聊天
- 仿YY语音的聊天系统的源代码
- 基于minigui的聊天程序
- 安卓基于UDP的简易聊天程序源码
- Linux局域网聊天项目
评论
共有 条评论