windows-updates-20021104
[openafs.git] / src / WINNT / client_exp / mount_points_dlg.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 class CMountPointsDlg : public CDialog
11 {
12         CStringArray m_MountPoints;
13         
14 // Construction
15 public:
16         CMountPointsDlg(CWnd* pParent = NULL);   // standard constructor
17
18         void SetMountPoints(const CStringArray& mountPoints);
19
20 // Dialog Data
21         //{{AFX_DATA(CMountPointsDlg)
22         enum { IDD = IDD_MOUNT_POINTS };
23         CListBox        m_List;
24         //}}AFX_DATA
25
26
27 // Overrides
28         // ClassWizard generated virtual function overrides
29         //{{AFX_VIRTUAL(CMountPointsDlg)
30         protected:
31         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
32         //}}AFX_VIRTUAL
33
34 // Implementation
35 protected:
36
37         // Generated message map functions
38         //{{AFX_MSG(CMountPointsDlg)
39         virtual BOOL OnInitDialog();
40         afx_msg void OnHelp();
41         //}}AFX_MSG
42         DECLARE_MESSAGE_MAP()
43 };