LINUX: afs_create infinite fetchStatus loop
[pkg-k5-afs_openafs.git] / src / WINNT / client_exp / clear_acl_dlg.cpp
blob50cfdf008797256212f594fcb7844238845e538e
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 #include "stdafx.h"
11 #include <winsock2.h>
12 #include <ws2tcpip.h>
14 extern "C" {
15 #include <afs/param.h>
16 #include <afs/stds.h>
19 #include "afs_shl_ext.h"
20 #include "clear_acl_dlg.h"
22 #ifdef _DEBUG
23 #define new DEBUG_NEW
24 #undef THIS_FILE
25 static char THIS_FILE[] = __FILE__;
26 #endif
28 /////////////////////////////////////////////////////////////////////////////
29 // CClearAclDlg dialog
32 CClearAclDlg::CClearAclDlg(CWnd* pParent /*=NULL*/)
33 : CDialog()
35 InitModalIndirect (TaLocale_GetDialogResource (CClearAclDlg::IDD), pParent);
37 //{{AFX_DATA_INIT(CClearAclDlg)
38 m_bNegative = FALSE;
39 m_bNormal = FALSE;
40 //}}AFX_DATA_INIT
44 void CClearAclDlg::DoDataExchange(CDataExchange* pDX)
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
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()
60 /////////////////////////////////////////////////////////////////////////////
61 // CClearAclDlg message handlers
63 void CClearAclDlg::GetSettings(BOOL& bNormal, BOOL& bNegative)
65 bNormal = m_bNormal;
66 bNegative = m_bNegative;