资源简介
无限重启C++程序 调用了System命令 各位要测试的请在虚拟机下运行!
代码片段和文件信息
// ReStart.cpp : 定义应用程序的类行为。
//
#include “stdafx.h“
#include “ReStart.h“
#include “ReStartDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CReStartApp
BEGIN_MESSAGE_MAP(CReStartApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()
// CReStartApp 构造
CReStartApp::CReStartApp()
{
// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}
// 唯一的一个 CReStartApp 对象
CReStartApp theApp;
// CReStartApp 初始化
BOOL CReStartApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。 否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
AfxEnableControlContainer();
// 创建 shell 管理器,以防对话框包含
// 任何 shell 树视图控件或 shell 列表视图控件。
CShellManager *pShellManager = new CShellManager;
// 激活“Windows Native”视觉管理器,以便在 MFC 控件中启用主题
CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows));
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T(“应用程序向导生成的本地应用程序“));
CReStartDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
// “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
// “取消”来关闭对话框的代码
}
else if (nResponse == -1)
{
TRACE(traceAppMsg 0 “警告: 对话框创建失败,应用程序将意外终止。\n“);
TRACE(traceAppMsg 0 “警告: 如果您在对话框上使用 MFC 控件,则无法 #define _AFX_NO_MFC_CONTROLS_IN_DIALOGS。\n“);
}
// 删除上面创建的 shell 管理器。
if (pShellManager != NULL)
{
delete pShellManager;
}
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
// 而不是启动应用程序的消息泵。
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
I.A.... 699 2018-08-20 22:13 ReStart\ReStart\Debug\ReStart.log
I.A.... 41330 2018-08-20 22:10 ReStart\ReStart\Debug\ReStart.obj
I.A.... 43319296 2018-08-20 22:10 ReStart\ReStart\Debug\ReStart.pch
I.A.... 2500 2018-08-20 22:10 ReStart\ReStart\Debug\ReStart.tlog\cl.command.1.tlog
I.A.... 78264 2018-08-20 22:10 ReStart\ReStart\Debug\ReStart.tlog\CL.read.1.tlog
I.A.... 2518 2018-08-20 22:10 ReStart\ReStart\Debug\ReStart.tlog\CL.write.1.tlog
I.A.... 2 2018-08-20 22:13 ReStart\ReStart\Debug\ReStart.tlog\rc.command.1.tlog
I.A.... 2 2018-08-20 22:13 ReStart\ReStart\Debug\ReStart.tlog\rc.read.1.tlog
I.A.... 2 2018-08-20 22:13 ReStart\ReStart\Debug\ReStart.tlog\rc.write.1.tlog
I.A.... 198 2018-08-20 22:13 ReStart\ReStart\Debug\ReStart.tlog\ReStart.lastbuildstate
I.A.... 0 2018-08-20 22:13 ReStart\ReStart\Debug\ReStart.tlog\unsuccessfulbuild
I.A.... 49456 2018-08-20 22:10 ReStart\ReStart\Debug\ReStartDlg.obj
I.A.... 916903 2018-08-20 22:10 ReStart\ReStart\Debug\stdafx.obj
I.A.... 2305024 2018-08-20 22:10 ReStart\ReStart\Debug\vc120.idb
I.A.... 6639616 2018-08-20 22:10 ReStart\ReStart\Debug\vc120.pdb
I.A.... 3861 2018-08-20 22:04 ReStart\ReStart\ReadMe.txt
I.A.... 1690 2018-08-20 22:11 ReStart\ReStart\res\ReStart.ico
I.A.... 670 2018-08-20 22:04 ReStart\ReStart\res\ReStart.rc2
I.A.... 513 2018-08-20 22:04 ReStart\ReStart\Resource.h
I.A.... 108680 2018-08-20 22:13 ReStart\ReStart\ReStart.aps
I.A.... 2387 2018-08-20 22:04 ReStart\ReStart\ReStart.cpp
I.A.... 449 2018-08-20 22:04 ReStart\ReStart\ReStart.h
I.A.... 10458 2018-08-20 22:13 ReStart\ReStart\ReStart.rc
I.A.... 5998 2018-08-20 22:04 ReStart\ReStart\ReStart.vcxproj
I.A.... 2055 2018-08-20 22:04 ReStart\ReStart\ReStart.vcxproj.filters
I.A.... 3020 2018-08-20 22:04 ReStart\ReStart\ReStartDlg.cpp
I.A.... 567 2018-08-20 22:04 ReStart\ReStart\ReStartDlg.h
I.A.... 140 2018-08-20 22:04 ReStart\ReStart\stdafx.cpp
I.A.... 1578 2018-08-20 22:04 ReStart\ReStart\stdafx.h
I.A.... 234 2018-08-20 22:04 ReStart\ReStart\targetver.h
............此处省略12个文件信息
- 上一篇:gcc&gcc;-c++4.8version
- 下一篇:Excel-demo
相关资源
- MFC销售管理SaleSystem.rar
- SystemVerilog验证 测试平台编写指南
- System.Data.SQLite v1.0.109.0 32位 64位 自适
- 文件系统.cpp
- systemverilog验证 张春 源代码 http://ch
- C++实现的学生学籍信息管理系统
- 文件系统fileSystem
- 解决System.Data.SQLite兼容32位和64位问题
- 解决System.Data.SQLite兼容32位和64位问题
- 简单模拟一个草原生态系统
- VC(MFC)动平衡测试程序
- Hands-On System Programming with C++17
- sqlite运行所需Vc++运行环境,纯净版
- 操作系统原理及设计原则(Operating
- Operating Systems Design and Implementation Th
- C++ 获得Windows和System的路径
- 嵌入式系统的C语言—译自《C for em<
评论
共有 条评论