📄 usbdlg.h
字号:
// usbDlg.h : header file
//
#if !defined(AFX_USBDLG_H__B0AE93A6_B958_11D6_A00E_C015AB3B3320__INCLUDED_)
#define AFX_USBDLG_H__B0AE93A6_B958_11D6_A00E_C015AB3B3320__INCLUDED_
#include "usb_lib.h" // Added by ClassView
#include "usb_diag_lib.h" // Added by ClassView
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// CUsbDlg dialog
class CUsbDlg : public CDialog
{
// Construction
public:
void Display(void);
~CUsbDlg();
CUsbDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CUsbDlg)
enum { IDD = IDD_USB_DIALOG };
CEdit m_Input;
CButton m_STOP;
CButton m_SET;
CButton m_SCAN;
CButton m_LISTEN;
CButton m_DISPPIPE;
CButton m_DISPCONF;
CEdit m_Mess;
CButton m_Close;
CButton m_Open;
CString m_Message;
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CUsbDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
//{{AFX_MSG(CUsbDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnOpen();
afx_msg void OnClose();
afx_msg void OnScan();
afx_msg void OnDispconf();
afx_msg void OnDisppipe();
afx_msg void OnListen();
afx_msg void OnSet();
afx_msg void OnStop();
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnClear();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
USB_LISTEN_PIPE listenPipe;
USB_HANDLE USB_LocateAndOpenDevice(BOOL);
USB_HANDLE hUSB;
HANDLE hWD;
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_USBDLG_H__B0AE93A6_B958_11D6_A00E_C015AB3B3320__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -