Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
1.7 KiB

  1. /*++
  2. Microsoft Windows
  3. Copyright (C) Microsoft Corporation, 1981 - 1999
  4. Module Name:
  5. multdevices.h
  6. Abstract:
  7. Author:
  8. Rahul Thombre (RahulTh) 4/30/1998
  9. Revision History:
  10. 4/30/1998 RahulTh
  11. Created this module.
  12. --*/
  13. #if !defined(AFX_MULTDEVICES_H__43C347D1_B211_11D1_A60A_00C04FC252BD__INCLUDED_)
  14. #define AFX_MULTDEVICES_H__43C347D1_B211_11D1_A60A_00C04FC252BD__INCLUDED_
  15. #if _MSC_VER >= 1000
  16. #pragma once
  17. #endif // _MSC_VER >= 1000
  18. #include "DeviceList.h"
  19. // MultDevices.h : header file
  20. //
  21. class CSendProgress; //forward declaration
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CMultDevices dialog
  24. class CMultDevices : public CDialog
  25. {
  26. // Construction
  27. public:
  28. CMultDevices(CWnd* pParent = NULL, CDeviceList* pDevList = NULL); // standard constructor
  29. // Dialog Data
  30. //{{AFX_DATA(CMultDevices)
  31. enum { IDD = IDD_DEVICECHOOSER };
  32. CListBox m_lstDevices;
  33. //}}AFX_DATA
  34. // Overrides
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CMultDevices)
  37. protected:
  38. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. protected:
  42. // Generated message map functions
  43. //{{AFX_MSG(CMultDevices)
  44. virtual BOOL OnInitDialog();
  45. virtual void OnOK();
  46. afx_msg LONG OnContextMenu (WPARAM wParam, LPARAM lParam);
  47. afx_msg LONG OnHelp (WPARAM wParam, LPARAM lParam);
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. private:
  51. CSendProgress* m_pParentWnd;
  52. CDeviceList* m_pDevList;
  53. };
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_MULTDEVICES_H__43C347D1_B211_11D1_A60A_00C04FC252BD__INCLUDED_)