nt-makefile-clean-targets-20010917
[openafs.git] / src / WINNT / client_exp / unlog_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 #include "resource.h"
11
12 /////////////////////////////////////////////////////////////////////////////
13 // CUnlogDlg dialog
14
15 class CUnlogDlg : public CDialog
16 {
17 // Construction
18 public:
19         CUnlogDlg(CWnd* pParent = NULL);        // standard constructor
20
21         void SetCellName(const CString& strCellName)    { m_strCellName = strCellName; }
22
23 // Dialog Data
24         //{{AFX_DATA(CUnlogDlg)
25         enum { IDD = IDD_UNLOG_DIALOG };
26         CButton m_OK;
27         CString m_strCellName;
28         //}}AFX_DATA
29
30         // ClassWizard generated virtual function overrides
31         //{{AFX_VIRTUAL(CUnlogDlg)
32         protected:
33         virtual void DoDataExchange(CDataExchange* pDX);        // DDX/DDV support
34         //}}AFX_VIRTUAL
35
36 // Implementation
37 protected:
38         // Generated message map functions
39         //{{AFX_MSG(CUnlogDlg)
40         virtual BOOL OnInitDialog();
41         afx_msg void OnChangeCellName();
42         virtual void OnOK();
43         afx_msg void OnHelp();
44         //}}AFX_MSG
45         DECLARE_MESSAGE_MAP()
46 };