LINUX: afs_create infinite fetchStatus loop
[pkg-k5-afs_openafs.git] / src / WINNT / client_exp / partition_info_dlg.h
blob39b2430d25ac07e8a558c685781f23fa160a3995
1 /*
2 * Copyright 2000, International Business Machines Corporation and others.
3 * All Rights Reserved.
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 */
10 class CPartitionInfoDlg : public CDialog
12 LONG m_nSize;
13 LONG m_nFree;
15 // Construction
16 public:
17 CPartitionInfoDlg(CWnd* pParent = NULL); // standard constructor
19 void SetValues(LONG nSize, LONG nFree) { m_nSize = nSize; m_nFree = nFree; }
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
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
37 // Implementation
38 protected:
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()