1#if !defined(AFX_SECURITY_H__6F5ED7A3_9C16_11D6_9EF3_00A0C965AF06__INCLUDED_)
2#define AFX_SECURITY_H__6F5ED7A3_9C16_11D6_9EF3_00A0C965AF06__INCLUDED_
3
4#if _MSC_VER > 1000
5#pragma once
6#endif // _MSC_VER > 1000
7// Security.h : header file
8//
9
10/////////////////////////////////////////////////////////////////////////////
11// CSecurity dialog
12
13class CSecurity : public CDialog
14{
15// Construction
16public:
17	CSecurity(CWnd* pParent = NULL);   // standard constructor
18
19// Dialog Data
20	//{{AFX_DATA(CSecurity)
21	enum { IDD = IDD_SECURITY };
22	CButton	m_okayBtn;
23	CComboBox	m_type;
24	CEdit	m_serverCtrl;
25	CString	m_server;
26	//}}AFX_DATA
27
28
29// Overrides
30	// ClassWizard generated virtual function overrides
31	//{{AFX_VIRTUAL(CSecurity)
32	protected:
33	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
34	//}}AFX_VIRTUAL
35
36// Implementation
37protected:
38
39	// Generated message map functions
40	//{{AFX_MSG(CSecurity)
41	virtual BOOL OnInitDialog();
42	afx_msg void OnChangeSecurityServer();
43	afx_msg void OnSelchangeSecurityType();
44	virtual void OnOK();
45	//}}AFX_MSG
46	DECLARE_MESSAGE_MAP()
47};
48
49//{{AFX_INSERT_LOCATION}}
50// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
51
52#endif // !defined(AFX_SECURITY_H__6F5ED7A3_9C16_11D6_9EF3_00A0C965AF06__INCLUDED_)
53