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

📄 capcreatordlg.h

📁 把文本文件转换成ethereal数据文件
💻 H
字号:
// CapCreatorDlg.h : header file
//

#if !defined(AFX_CAPCREATORDLG_H__8B3B636B_A37F_46AF_AC00_F30A09816FC2__INCLUDED_)
#define AFX_CAPCREATORDLG_H__8B3B636B_A37F_46AF_AC00_F30A09816FC2__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


/////////////////////////////////////////////////////////////////////////////
// CCapCreatorDlg dialog

class CCapCreatorDlg : public CDialog
{
// Construction
public:
	CCapCreatorDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CCapCreatorDlg)
	enum { IDD = IDD_CAPCREATOR_DIALOG };
	CString	m_SrcFileName;
	CString	m_TagFileName;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CCapCreatorDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CCapCreatorDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnOpenSrcFile();
	afx_msg void OnOpenTagFile();
	afx_msg void OnExit();
	afx_msg void OnExecute();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


#endif // !defined(AFX_CAPCREATORDLG_H__8B3B636B_A37F_46AF_AC00_F30A09816FC2__INCLUDED_)
/////////////////////////////////////////////////////////////////////////////
// OpenFileDlg dialog

class OpenFileDlg : public CFileDialog
{
	DECLARE_DYNAMIC(OpenFileDlg)

public:
	OpenFileDlg(BOOL bOpenFileDialog, // TRUE for FileOpen, FALSE for FileSaveAs
		LPCTSTR lpszDefExt = NULL,
		LPCTSTR lpszFileName = NULL,
		DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
		LPCTSTR lpszFilter = NULL,
		CWnd* pParentWnd = NULL);

protected:
	//{{AFX_MSG(OpenFileDlg)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

⌨️ 快捷键说明

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