⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 memrepair.h

📁 VC源码:内存修改器 VC源码:内存修改器
💻 H
字号:
///////////////////////////////////
// MemRepair.h文件

#include "afxwin.h"
#include <afxcmn.h>	// 为了使用CStatusBarCtrl类

#include "MemFinder.h"


class CMyApp : public CWinApp
{
public:
	virtual BOOL InitInstance();
};


class CMainDialog : public CDialog
{
public:
	CMainDialog(CWnd* pWndParent = NULL);

	CComboBox m_comboList;
	CButton m_btnUpdate;
	CListBox m_listAddr;

	CStatusBarCtrl m_bar;

	CMsgMemFinder *m_pFinder;
	
	void OnUpdate();
	void OnSearch();
	void OnRestart();
	void OnModify();
	void OnSelectChange();


	void UIControl();
	
	virtual BOOL OnInitDialog();
	virtual void OnCancel();


	

	DECLARE_MESSAGE_MAP()
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -