KeyLogDlg.h
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:2k
源码类别:

网络截获/分析

开发平台:

Visual C++

  1. #if !defined(AFX_KEYLOGDLG_H__1BDB140A_97C8_456A_96B1_51E0763F4558__INCLUDED_)
  2. #define AFX_KEYLOGDLG_H__1BDB140A_97C8_456A_96B1_51E0763F4558__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // KeyLogDlg.h : header file
  7. //
  8. /*
  9.  作者:海啸 lyyer English Name: Jack 
  10.   blog:http://lyyer.blog.sohu.com
  11.   website:http://www.cnGSG.com
  12.   海啸网络安全组织
  13. */
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CKeyLogDlg dialog
  16. class CKeyLogDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20. BOOL OnInitDialog();
  21. CKeyLogDlg(CWnd* pParent = NULL);   // standard constructor
  22. SOCKET ClientSocket;
  23. // Dialog Data
  24. //{{AFX_DATA(CKeyLogDlg)
  25. enum { IDD = IDD_DIALOG_KEYLOG };
  26. CButton m_btn_show;
  27. CButton m_btn_stopkeylog;
  28. CButton m_btn_startkeylog;
  29. CEdit m_logEdit;
  30. //}}AFX_DATA
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CKeyLogDlg)
  34. protected:
  35. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. protected:
  39. // Generated message map functions
  40. //{{AFX_MSG(CKeyLogDlg)
  41. afx_msg void OnButtonStart();
  42. afx_msg void OnButtonStop();
  43. afx_msg void OnButtonShowlog();
  44. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_KEYLOGDLG_H__1BDB140A_97C8_456A_96B1_51E0763F4558__INCLUDED_)