USBPortDlg.h
上传用户:chinacm168
上传日期:2007-04-11
资源大小:193k
文件大小:2k
源码类别:

USB编程

开发平台:

Visual C++

  1. // USBPortDlg.h : header file
  2. //
  3. #if !defined(AFX_USBPORTDLG_H__DCC903AB_F400_4177_B02F_DFC9405774A5__INCLUDED_)
  4. #define AFX_USBPORTDLG_H__DCC903AB_F400_4177_B02F_DFC9405774A5__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CUSBPortDlg dialog
  10. typedef struct _HIDD_ATTRIBUTES {
  11.   ULONG  Size;
  12.   USHORT  VendorID;
  13.   USHORT  ProductID;
  14.   USHORT  VersionNumber;
  15. } HIDD_ATTRIBUTES, *PHIDD_ATTRIBUTES;
  16. class CUSBPortDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20. CUSBPortDlg(CWnd* pParent = NULL); // standard constructor
  21. // Dialog Data
  22. //{{AFX_DATA(CUSBPortDlg)
  23. enum { IDD = IDD_USBPORT_DIALOG };
  24. // NOTE: the ClassWizard will add data members here
  25. //}}AFX_DATA
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CUSBPortDlg)
  28. protected:
  29. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33. HICON m_hIcon;
  34. // Generated message map functions
  35. //{{AFX_MSG(CUSBPortDlg)
  36. virtual BOOL OnInitDialog();
  37. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  38. afx_msg void OnPaint();
  39. afx_msg HCURSOR OnQueryDragIcon();
  40. afx_msg void OnSearch();
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. private:
  44. CString m_strPath;
  45. CString m_strLog;
  46. BOOL m_bFoundDevice;
  47. };
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_USBPORTDLG_H__DCC903AB_F400_4177_B02F_DFC9405774A5__INCLUDED_)