資源簡介
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
評論
共有 條評論