apispyapp.h
来自「《windows程序设计》王艳平版的书籍源代码」· C头文件 代码 · 共 43 行
H
43 行
///////////////////////////////////////////
//APISpyApp.h文件
#include <afxwin.h>
#include "RemThreadInjector.h"
#include "../09APISpyLib/APISpyLib.h"
class CMyApp : public CWinApp
{
public:
BOOL InitInstance();
};
class CMainDialog : public CDialog
{
public:
CMainDialog(CWnd* pParentWnd = NULL);
~CMainDialog();
protected:
CRemThreadInjector* m_pInjector;
CMyShareMem* m_pShareMem;
DWORD m_dwProcessId;
int m_nCount;
virtual BOOL OnInitDialog();
virtual void OnCancel();
afx_msg void OnBrowser();
afx_msg void OnStart();
afx_msg void OnClear();
afx_msg long OnSpyACall(WPARAM wParam, LPARAM lParam);
DECLARE_MESSAGE_MAP()
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?