mscommdlg.h

来自「MSCOMM 编程实例」· C头文件 代码 · 共 62 行

H
62
字号
// MSCommDlg.h : header file
//
//{{AFX_INCLUDES()
#include "mscomm1.h"
//}}AFX_INCLUDES

#if !defined(AFX_MSCOMMDLG_H__AB3158DA_196F_4799_B91E_5019E0EBBDE7__INCLUDED_)
#define AFX_MSCOMMDLG_H__AB3158DA_196F_4799_B91E_5019E0EBBDE7__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "mscomm1.h"
/////////////////////////////////////////////////////////////////////////////
// CMSCommDlg dialog

class CMSCommDlg : public CDialog
{
// Construction
public:
	CMSCommDlg(CWnd* pParent = NULL);	// standard constructor
    void InitComm();
// Dialog Data
	//{{AFX_DATA(CMSCommDlg)
	enum { IDD = IDD_MSCOMM_DIALOG };
	CMSComm	m_Comm;
	CString	m_Receive;
	CString	m_Send;
	int		m_Port;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CMSCommDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnSelchangeCombo1();
	afx_msg void OnOpencom();
	afx_msg void OnClosecom();
	afx_msg void OnSend();
	afx_msg void OnOnCommMscomm();
	DECLARE_EVENTSINK_MAP()
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MSCOMMDLG_H__AB3158DA_196F_4799_B91E_5019E0EBBDE7__INCLUDED_)

⌨️ 快捷键说明

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