资源简介
VC++木马病毒检测工具设计与实现,含毕设要求各种文档及源码
代码片段和文件信息
// DiskClean.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “DiskClean.h“
#include “DiskCleanDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
////////////////////////////////////////////////////////////////////////////////
// CDiskCleanApp
BEGIN_MESSAGE_MAP(CDiskCleanApp CWinApp)
//{{AFX_MSG_MAP(CDiskCleanApp)
// 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()
////////////////////////////////////////////////////////////////////////////////
// CDiskCleanApp construction
CDiskCleanApp::CDiskCleanApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
////////////////////////////////////////////////////////////////////////////////
// The one and only CDiskCleanApp object
CDiskCleanApp theApp;
////////////////////////////////////////////////////////////////////////////////
// CDiskCleanApp initialization
BOOL CDiskCleanApp::InitInstance()
{
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
CDiskCleanDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-09-03 10:53 毕业设计\
文件 115200 2011-09-03 10:52 毕业设计\任务书-木马病毒检测工具的设计与实现.doc
目录 0 2011-09-03 10:49 毕业设计\可执行程序\
文件 2195505 2011-06-11 21:49 毕业设计\可执行程序\DiskClean.exe
文件 205 2011-06-11 22:11 毕业设计\可执行程序\code.ini
文件 247677 2011-05-05 23:00 毕业设计\外文原文.pdf
文件 74240 2011-06-18 11:20 毕业设计\外文翻译.doc
文件 386254 2011-09-03 10:51 毕业设计\大连交通大学2011届本科毕业设计.pptx
文件 43520 2011-05-24 18:11 毕业设计\实习(调研)报告.doc
文件 656896 2011-06-21 09:37 毕业设计\木马病毒检测工具的设计与实现(论文)-李迎超-终.doc
文件 351744 2011-06-18 11:17 毕业设计\毕业设计软件使用说明书.doc
目录 0 2011-09-03 10:49 毕业设计\源程序\
目录 0 2011-09-03 10:49 毕业设计\源程序\DiskClean\
目录 0 2011-09-03 10:53 毕业设计\源程序\DiskClean\Debug\
文件 2119 2011-06-11 21:34 毕业设计\源程序\DiskClean\DiskClean.cpp
文件 5357 2011-06-11 21:54 毕业设计\源程序\DiskClean\DiskClean.dsp
文件 524 2011-06-11 21:54 毕业设计\源程序\DiskClean\DiskClean.dsw
文件 1358 2011-06-11 21:38 毕业设计\源程序\DiskClean\DiskClean.h
文件 66560 2011-06-16 21:34 毕业设计\源程序\DiskClean\DiskClean.ncb
文件 48640 2011-06-16 21:34 毕业设计\源程序\DiskClean\DiskClean.opt
文件 749 2011-06-11 21:49 毕业设计\源程序\DiskClean\DiskClean.plg
文件 7077 2011-06-11 21:48 毕业设计\源程序\DiskClean\DiskClean.rc
文件 17380 2011-06-11 21:36 毕业设计\源程序\DiskClean\DiskCleanDlg.cpp
文件 1848 2011-06-11 21:39 毕业设计\源程序\DiskClean\DiskCleanDlg.h
文件 4727 2011-06-11 21:36 毕业设计\源程序\DiskClean\IniFile.cpp
文件 2165 2011-06-11 21:43 毕业设计\源程序\DiskClean\IniFile.h
文件 3207 2011-06-11 21:37 毕业设计\源程序\DiskClean\SelectFile.cpp
文件 1251 2011-06-11 21:45 毕业设计\源程序\DiskClean\SelectFile.h
文件 213 2011-06-11 21:37 毕业设计\源程序\DiskClean\StdAfx.cpp
文件 1060 2011-06-11 21:44 毕业设计\源程序\DiskClean\StdAfx.h
文件 9842 2011-06-11 21:32 毕业设计\源程序\DiskClean\md5.cpp
............此处省略2个文件信息
- 上一篇:改善后的C++考勤管理系统
- 下一篇:基于MFC的简单的图书管理系统
评论
共有 条评论