// AdminDlg.h : header file // ///////////////////////////////////////////////////////////////////////////// // CAdminDlg dialog #ifndef _ADMINDLG_H_ #define _ADMINDLG_H_ class CAdminDlg : public CDialog { // Construction public: CAdminDlg(CWnd* pParent = NULL); // standard constructor L_INT GetServerPrivateKeyPassword(HWND hWndParent); BOOL m_bEnableEditing; CListCtrl *m_pUserList; CListCtrl *m_pEventLog; CImageList m_Image; L_UINT32 m_SecureMode; // Dialog Data //{{AFX_DATA(CAdminDlg) enum { IDD = IDD_ADMIN }; CListCtrl m_EventLog; CListCtrl m_UserList; CString m_sServerAETitle; UINT m_uServerPort; int m_nTimeOut; int m_nMaxClients; //}}AFX_DATA // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CAdminDlg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: // Generated message map functions //{{AFX_MSG(CAdminDlg) virtual BOOL OnInitDialog(); afx_msg void OnButton5(); afx_msg void OnButton3(); afx_msg void OnButton1(); afx_msg void OnButton2(); afx_msg void OnClose(); afx_msg void OnSecTls(); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; #endif _ADMINDLG_H_