findlanabyname-20040228
[openafs.git] / src / WINNT / client_exp / auth_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 CAuthDlg : public CDialog
11 {
12         void FillTokenList();
13         CString GetSelectedCellName();
14
15 // Construction
16 public:
17         CAuthDlg(CWnd* pParent = NULL);   // standard constructor
18
19 // Dialog Data
20         //{{AFX_DATA(CAuthDlg)
21         enum { IDD = IDD_AUTHENTICATION };
22         CListBox        m_TokenList;
23         //}}AFX_DATA
24
25
26 // Overrides
27         // ClassWizard generated virtual function overrides
28         //{{AFX_VIRTUAL(CAuthDlg)
29         protected:
30         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
31         //}}AFX_VIRTUAL
32
33 // Implementation
34 protected:
35
36         // Generated message map functions
37         //{{AFX_MSG(CAuthDlg)
38         virtual BOOL OnInitDialog();
39         afx_msg void OnGetTokens();
40         afx_msg void OnDiscardTokens();
41         afx_msg void OnHelp();
42         //}}AFX_MSG
43         DECLARE_MESSAGE_MAP()
44 };