rx: Remove RX_CALL_BUSY
[openafs.git] / src / WINNT / client_exp / clear_acl_dlg.cpp
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 "stdafx.h"
11 #include <winsock2.h>
12 #include <ws2tcpip.h>
13
14 extern "C" {
15 #include <afs/param.h>
16 #include <afs/stds.h>
17 }
18
19 #include "afs_shl_ext.h"
20 #include "clear_acl_dlg.h"
21
22 #ifdef _DEBUG
23 #define new DEBUG_NEW
24 #undef THIS_FILE
25 static char THIS_FILE[] = __FILE__;
26 #endif
27
28 /////////////////////////////////////////////////////////////////////////////
29 // CClearAclDlg dialog
30
31
32 CClearAclDlg::CClearAclDlg(CWnd* pParent /*=NULL*/)
33         : CDialog()
34 {
35         InitModalIndirect (TaLocale_GetDialogResource (CClearAclDlg::IDD), pParent);
36
37         //{{AFX_DATA_INIT(CClearAclDlg)
38         m_bNegative = FALSE;
39         m_bNormal = FALSE;
40         //}}AFX_DATA_INIT
41 }
42
43
44 void CClearAclDlg::DoDataExchange(CDataExchange* pDX)
45 {
46         CDialog::DoDataExchange(pDX);
47         //{{AFX_DATA_MAP(CClearAclDlg)
48         DDX_Check(pDX, IDC_NEGATIVE, m_bNegative);
49         DDX_Check(pDX, IDC_NORMAL, m_bNormal);
50         //}}AFX_DATA_MAP
51 }
52
53
54 BEGIN_MESSAGE_MAP(CClearAclDlg, CDialog)
55         //{{AFX_MSG_MAP(CClearAclDlg)
56                 // NOTE: the ClassWizard will add message map macros here
57         //}}AFX_MSG_MAP
58 END_MESSAGE_MAP()
59
60 /////////////////////////////////////////////////////////////////////////////
61 // CClearAclDlg message handlers
62
63 void CClearAclDlg::GetSettings(BOOL& bNormal, BOOL& bNegative)
64 {
65         bNormal = m_bNormal;
66         bNegative = m_bNegative;
67 }
68