memrepair.h
来自「VC源码:内存修改器 VC源码:内存修改器」· C头文件 代码 · 共 46 行
H
46 行
///////////////////////////////////
// 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 + =
减小字号Ctrl + -
显示快捷键?