📄 debug.h
字号:
#if !defined(AFX_DEBUG_H__525BEBA2_E31F_41AD_A7AF_9F0C15F8FD96__INCLUDED_)
#define AFX_DEBUG_H__525BEBA2_E31F_41AD_A7AF_9F0C15F8FD96__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Debug.h : header file
//
#include <afxdlgs.h>
#include "resource.h"
#include "ConfigGen.h"
/////////////////////////////////////////////////////////////////////////////
// Debug dialog
class Debug : public CPropertyPage
{
DECLARE_DYNCREATE(Debug)
// Construction
public:
Debug();
~Debug();
bool StoreDebugHeaderData(ConfigHeaderStruct *cfg_header);
bool LoadDebugHeaderData(ConfigHeaderStruct *cfg_header);
bool PopulateDebugData();
// Dialog Data
//{{AFX_DATA(Debug)
enum { IDD = IDD_PROPPAGE_DEBUG };
// NOTE - ClassWizard will add data members here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_DATA
// Overrides
// ClassWizard generate virtual function overrides
//{{AFX_VIRTUAL(Debug)
public:
virtual void OnCancel();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(Debug)
afx_msg void OnCheckDebugAll();
afx_msg void OnCheckDebugTcp();
afx_msg void OnCheckDebugUdp();
afx_msg void OnCheckDebugIp();
afx_msg void OnCheckDebugApilib();
afx_msg void OnCheckDebugSockets();
afx_msg void OnCheckDebugMem();
afx_msg void OnCheckDebugMemp();
afx_msg void OnCheckTracing();
afx_msg void OnTcpPktDump();
afx_msg void OnUdpPktDump();
afx_msg void OnIpPktDump();
afx_msg void OnArpPktDump();
afx_msg void OnIcmpPktDump();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
bool m_debug_all;
bool m_debug_tcp;
bool m_debug_udp;
bool m_debug_ip;
bool m_debug_apilib;
bool m_debug_sockets;
bool m_debug_mem;
bool m_debug_memp;
bool m_trace_enable;
bool m_tcp_pkt_dump;
bool m_udp_pkt_dump;
bool m_ip_pkt_dump;
bool m_icmp_pkt_dump;
bool m_arp_pkt_dump;
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_DEBUG_H__525BEBA2_E31F_41AD_A7AF_9F0C15F8FD96__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -