资源简介
VC++ 内存扫描与内存数据读写
代码片段和文件信息
//Download by http://www.NewXing.com
// DoProcess.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “DoProcess.h“
#include “DoProcessDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDoProcessApp
BEGIN_MESSAGE_MAP(CDoProcessApp CWinApp)
//{{AFX_MSG_MAP(CDoProcessApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CDoProcessApp construction
CDoProcessApp::CDoProcessApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDoProcessApp object
CDoProcessApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDoProcessApp initialization
BOOL CDoProcessApp::InitInstance()
{
// 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
CDoProcessDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
....... 21848 2009-05-24 20:34 www.NewXing.com\扫描内存与内存数据读写\DoProcess.aps
....... 71 2005-11-18 10:08 www.NewXing.com\扫描内存与内存数据读写\DoProcess.bbs
....... 1647 2007-09-17 22:46 www.NewXing.com\扫描内存与内存数据读写\DoProcess.clw
文件 2110 2011-04-01 20:36 www.NewXing.com\扫描内存与内存数据读写\DoProcess.cpp
文件 31099 2011-04-01 20:36 www.NewXing.com\扫描内存与内存数据读写\DoProcessDlg.cpp
文件 249 2011-04-01 20:36 www.NewXing.com\扫描内存与内存数据读写\StdAfx.cpp
....... 4213 2003-10-11 12:30 www.NewXing.com\扫描内存与内存数据读写\DoProcess.dsp
....... 543 2005-11-18 14:11 www.NewXing.com\扫描内存与内存数据读写\DoProcess.dsw
文件 1395 2011-04-01 20:36 www.NewXing.com\扫描内存与内存数据读写\DoProcess.h
文件 2310 2011-04-01 20:36 www.NewXing.com\扫描内存与内存数据读写\DoProcessDlg.h
文件 4210 2011-04-01 20:36 www.NewXing.com\扫描内存与内存数据读写\PSAPI.H
文件 1369 2011-04-01 20:36 www.NewXing.com\扫描内存与内存数据读写\Resource.h
文件 1037 2011-04-01 20:36 www.NewXing.com\扫描内存与内存数据读写\StdAfx.h
....... 1078 2003-10-11 12:30 www.NewXing.com\扫描内存与内存数据读写\res\DoProcess.ico
....... 6034 2000-02-02 22:11 www.NewXing.com\扫描内存与内存数据读写\Psapi.Lib
....... 156672 2007-09-17 22:47 www.NewXing.com\扫描内存与内存数据读写\DoProcess.ncb
....... 54784 2007-09-17 22:47 www.NewXing.com\扫描内存与内存数据读写\DoProcess.opt
....... 3155 2007-09-17 22:46 www.NewXing.com\扫描内存与内存数据读写\DoProcess.plg
....... 6151 2006-11-18 20:38 www.NewXing.com\扫描内存与内存数据读写\DoProcess.rc
....... 401 2003-10-11 12:30 www.NewXing.com\扫描内存与内存数据读写\res\DoProcess.rc2
....... 3633 2003-10-11 12:30 www.NewXing.com\扫描内存与内存数据读写\ReadMe.txt
目录 0 2009-05-24 20:25 www.NewXing.com\扫描内存与内存数据读写\res
目录 0 2009-05-24 20:34 www.NewXing.com\扫描内存与内存数据读写
----------- --------- ---------- ----- ----
304009 23
评论
共有 条评论