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