DebugProgramDlg.h
上传用户:yll456
上传日期:2022-03-08
资源大小:19064k
文件大小:1k
源码类别:

钩子与API截获

开发平台:

Visual C++

  1. // DebugProgramDlg.h : 头文件
  2. //
  3. #pragma once
  4. #include "afxwin.h"
  5. // CDebugProgramDlg 对话框
  6. class CDebugProgramDlg : public CDialog
  7. {
  8. // 构造
  9. public:
  10. CDebugProgramDlg(CWnd* pParent = NULL); // 标准构造函数
  11. // 对话框数据
  12. enum { IDD = IDD_DEBUGPROGRAM_DIALOG };
  13. protected:
  14. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  15. // 实现
  16. protected:
  17. HICON m_hIcon;
  18. // 生成的消息映射函数
  19. virtual BOOL OnInitDialog();
  20. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  21. afx_msg void OnPaint();
  22. afx_msg HCURSOR OnQueryDragIcon();
  23. DECLARE_MESSAGE_MAP()
  24. public:
  25. afx_msg void OnBnClickedButton1();
  26. afx_msg void OnBnClickedButton2();
  27. afx_msg void OnBnClickedButton3();
  28. CComboBox m_ProcessList;
  29. CEdit m_OpenFileName;
  30. CListBox m_BreakPointList;
  31. CString ObjectExe;
  32. afx_msg void OnBnClickedSelectbutton();
  33. afx_msg void OnBnClickedRefreshbutton();
  34. afx_msg void OnBnClickedIfattachprocess();
  35. BOOL m_ifChecked;
  36. CButton m_ctlCheckAttach;
  37. afx_msg void OnBnClickedStartbutton();
  38. };