• 大小: 0.13M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-05
  • 语言: 其他
  • 标签: 其他  

资源简介

httpserv.rar

资源截图

代码片段和文件信息


// httpserv.cpp : 定义应用程序的类行为。
//

#include “stdafx.h“
#include “httpserv.h“
#include “httpservDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// ChttpservApp

BEGIN_MESSAGE_MAP(ChttpservApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()


// ChttpservApp 构造

ChttpservApp::ChttpservApp()
{
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}


// 唯一的一个 ChttpservApp 对象

ChttpservApp theApp;


// ChttpservApp 初始化

BOOL ChttpservApp::InitInstance()
{
CWinApp::InitInstance();


// 创建 shell 管理器,以防对话框包含
// 任何 shell 树视图控件或 shell 列表视图控件。
CShellManager *pShellManager = new CShellManager;

// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T(“应用程序向导生成的本地应用程序“));

ChttpservDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
//  “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
//  “取消”来关闭对话框的代码
}

// 删除上面创建的 shell 管理器。
if (pShellManager != NULL)
{
delete pShellManager;
}

// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
//  而不是启动应用程序的消息泵。
return FALSE;
}


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

     文件     104840  2012-08-16 18:46  httpserv\httpserv.aps

     文件       1504  2012-07-30 10:17  httpserv\httpserv.cpp

     文件        454  2012-07-30 10:17  httpserv\httpserv.h

     文件      10028  2012-08-16 18:46  httpserv\httpserv.rc

     文件       5926  2012-07-30 10:42  httpserv\httpserv.vcxproj

     文件       1995  2012-07-30 10:17  httpserv\httpserv.vcxproj.filters

     文件        143  2012-07-30 10:17  httpserv\httpserv.vcxproj.user

     文件       6993  2012-09-06 21:40  httpserv\httpservDlg.cpp

     文件        907  2012-08-16 18:44  httpserv\httpservDlg.h

     文件       2556  2012-07-30 10:17  httpserv\ReadMe.txt

    .......     67777  2009-08-31 02:31  httpserv\res\httpserv.ico

     文件        672  2012-07-30 10:17  httpserv\res\httpserv.rc2

     文件       1454  2012-08-16 17:32  httpserv\resource.h

     文件        141  2012-07-30 10:17  httpserv\stdafx.cpp

     文件        910  2012-07-30 10:17  httpserv\stdafx.h

     文件        234  2012-07-30 10:17  httpserv\targetver.h

     文件        891  2012-07-30 10:17  httpserv.sln

    ..A..H.     16896  2012-09-06 16:30  httpserv.suo

     目录          0  2012-07-30 10:17  httpserv\res

     目录          0  2012-10-19 16:23  httpserv

----------- ---------  ---------- -----  ----

               224321                    20


评论

共有 条评论