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.

55 lines
1.5 KiB

  1. // ClosQDlg.h : header file
  2. //
  3. //=--------------------------------------------------------------------------=
  4. // Copyright 1997-1999 Microsoft Corporation. All Rights Reserved.
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  9. // PARTICULAR PURPOSE.
  10. //=--------------------------------------------------------------------------=
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CCloseQueueDialog dialog
  13. class CCloseQueueDialog : public CDialog
  14. {
  15. // Construction
  16. public:
  17. CCloseQueueDialog(CArray <ARRAYQ*, ARRAYQ*>*, CWnd* pParent = NULL); // standard constructor
  18. // Dialog Data
  19. //{{AFX_DATA(CCloseQueueDialog)
  20. enum { IDD = IDD_CLOSE_QUEUE_DIALOG };
  21. CComboBox m_PathNameCB;
  22. CString m_szPathName;
  23. //}}AFX_DATA
  24. /* pointer to the array with the strings for the combo box (Queues PathName). */
  25. CArray <ARRAYQ*, ARRAYQ*>* m_pStrArray ;
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CCloseQueueDialog)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. // Generated message map functions
  35. //{{AFX_MSG(CCloseQueueDialog)
  36. virtual BOOL OnInitDialog();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. public:
  40. void GetPathName(TCHAR szPathName[BUFFERSIZE])
  41. {
  42. _tcscpy (szPathName, m_szPathName);
  43. }
  44. };