rx: Remove RX_CALL_BUSY
[openafs.git] / src / WINNT / client_exp / partition_info_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 CPartitionInfoDlg : public CDialog
11 {
12         LONG m_nSize;
13         LONG m_nFree;
14
15 // Construction
16 public:
17         CPartitionInfoDlg(CWnd* pParent = NULL);   // standard constructor
18
19         void SetValues(LONG nSize, LONG nFree)  { m_nSize = nSize; m_nFree = nFree; }
20
21 // Dialog Data
22         //{{AFX_DATA(CPartitionInfoDlg)
23         enum { IDD = IDD_PARTITION_INFO };
24         CEdit   m_Size;
25         CEdit   m_PercentUsed;
26         CEdit   m_Free;
27         //}}AFX_DATA
28
29
30 // Overrides
31         // ClassWizard generated virtual function overrides
32         //{{AFX_VIRTUAL(CPartitionInfoDlg)
33         protected:
34         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
35         //}}AFX_VIRTUAL
36
37 // Implementation
38 protected:
39
40         // Generated message map functions
41         //{{AFX_MSG(CPartitionInfoDlg)
42         virtual BOOL OnInitDialog();
43         afx_msg void OnHelp();
44         //}}AFX_MSG
45         DECLARE_MESSAGE_MAP()
46 };