资源简介
VC++垃圾文件清理工具源码
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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 124 2008-09-06 10:10 anqn.com\DiskClean\CodeFans提醒.txt
文件 3058 2002-11-15 22:26 anqn.com\DiskClean\DiskClean.clw
文件 2105 2002-05-27 20:49 anqn.com\DiskClean\DiskClean.cpp
文件 4746 2002-11-15 22:26 anqn.com\DiskClean\DiskClean.dsp
文件 543 2002-05-27 20:49 anqn.com\DiskClean\DiskClean.dsw
文件 155648 2008-09-06 10:05 anqn.com\DiskClean\DiskClean.exe
文件 1357 2002-05-27 20:49 anqn.com\DiskClean\DiskClean.h
文件 9921 2002-11-15 22:06 anqn.com\DiskClean\DiskClean.rc
文件 11488 2002-11-15 21:58 anqn.com\DiskClean\DiskCleanDlg.cpp
文件 1762 2002-11-15 21:56 anqn.com\DiskClean\DiskCleanDlg.h
文件 1078 2002-05-27 20:49 anqn.com\DiskClean\res\DiskClean.ico
文件 401 2002-05-27 20:49 anqn.com\DiskClean\res\DiskClean.rc2
文件 3026 2002-11-15 21:25 anqn.com\DiskClean\resource.h
文件 3202 2002-11-14 09:40 anqn.com\DiskClean\SelectFile.cpp
文件 1251 2002-11-14 09:36 anqn.com\DiskClean\SelectFile.h
文件 211 2002-05-27 20:49 anqn.com\DiskClean\StdAfx.cpp
文件 1054 2002-05-27 20:49 anqn.com\DiskClean\StdAfx.h
文件 133 2008-07-10 15:02 anqn.com\DiskClean\源码爱好者.url
..AD... 0 2008-09-06 10:16 anqn.com\DiskClean\res
..AD... 0 2008-09-06 10:16 anqn.com\DiskClean
目录 0 2008-09-06 10:16 anqn.com
文件 394 2008-07-11 12:10 VIP会员.htm
文件 227156 2008-04-13 15:06 桌面.jpg
文件 1566 2009-03-06 23:29 安全中国anqn.com.txt
文件 815 2009-03-06 23:29 查看帮助.txt
文件 815 2009-03-06 23:29 会员服务.txt
----------- --------- ---------- ----- ----
431854 26
- 上一篇:C中的库函数qsort的实现
- 下一篇:C++矩阵变换操作平移、旋转、镜像
评论
共有 条评论