⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 udpdialog.cpp

📁 VC写的分析IP数据包的代码.rar如何使用的朋友可
💻 CPP
字号:
// UdpDialog.cpp : implementation file
//

#include "stdafx.h"
#include "ReadIP0802.h"
#include "UdpDialog.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// UdpDialog dialog


UdpDialog::UdpDialog(CWnd* pParent /*=NULL*/)
	: CDialog(UdpDialog::IDD, pParent)
{
	//{{AFX_DATA_INIT(UdpDialog)
	m_udpsourceport = _T("");
	m_udpdestport = _T("");
	m_datagramlen = _T("");
	m_udpchecksum = _T("");
	//}}AFX_DATA_INIT
}


void UdpDialog::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(UdpDialog)
	DDX_Text(pDX, IDC_EDIT_SOURCEPORT, m_udpsourceport);
	DDX_Text(pDX, IDC_EDIT_DESTPORT, m_udpdestport);
	DDX_Text(pDX, IDC_EDIT_DATAGRAMLEN, m_datagramlen);
	DDX_Text(pDX, IDC_EDIT_UDPCHECKSUM, m_udpchecksum);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(UdpDialog, CDialog)
	//{{AFX_MSG_MAP(UdpDialog)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// UdpDialog message handlers

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -