pck_filter.h
来自「匿名通信代码」· C头文件 代码 · 共 65 行
H
65 行
#if !defined(AFX_PCK_FILTER_H__3442B94E_A4B0_482D_A799_A154823DE032__INCLUDED_)
#define AFX_PCK_FILTER_H__3442B94E_A4B0_482D_A799_A154823DE032__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// pck_filter.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// pck_filter dialog
class pck_filter : public CDialog
{
// Construction
public:
struct LNode{
CString f_src_ip;
CString f_dst_ip;
struct LNode *next;
CTime tm;
};
CString m_filter_file;
CString m_pck_file;
CString strSQL[10];
void get_rules();
void get_pcks();
void filter();
void TimeCount();
pck_filter(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(pck_filter)
enum { IDD = IDD_DIALOG3 };
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(pck_filter)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(pck_filter)
afx_msg void On_pck_file_open();
afx_msg void On_rule_file_open();
virtual void OnOK();
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_PCK_FILTER_H__3442B94E_A4B0_482D_A799_A154823DE032__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?