12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #if !defined(AFX_REMOTENETCONFIG_H__46DCC693_7559_4436_B36C_817D9C9A874B__INCLUDED_)
- #define AFX_REMOTENETCONFIG_H__46DCC693_7559_4436_B36C_817D9C9A874B__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // RemoteNetConfig.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CRemoteNetConfig dialog
- class CRemoteNetConfig : public CDialog
- {
- // Construction
- public:
- CRemoteNetConfig(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(CRemoteNetConfig)
- enum { IDD = IDD_SUBDLG_NETCFG };
- CComboBox m_NFSDiskCombo;
- CComboBox m_IntervalCombo;
- CComboBox m_ServerCombo;
- CListCtrl m_RecvList;
- CString m_AccountSendName;
- CString m_AccountUserName;
- CString m_AccountPasswd;
- CString m_AccountPasswdConf;
- CString m_ServerAddress;
- BOOL m_AuthenCheck;
- BOOL m_AttachCheck;
- short m_NTPInterval;
- CString m_DDNSAddress;
- CString m_NTPAddress;
- CString m_DDNSUserName;
- CString m_DDNSPwdConf;
- CString m_DDNSPwd;
- CString m_AccountAddress;
- CString m_NFSDirectory;
- BOOL m_NTPCheck;
- BOOL m_DDNSCheck;
- CString m_NFSIPAddress;
- short m_NTPInterHour;
- short m_NTPInterMin;
- CString m_DnsIP;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CRemoteNetConfig)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CRemoteNetConfig)
- virtual BOOL OnInitDialog();
- afx_msg void OnAddrecv();
- afx_msg void OnDelrecv();
- afx_msg void OnNtpcheck();
- afx_msg void OnDdnscheck();
- afx_msg void OnConfirm();
- afx_msg void OnCancel();
- afx_msg void OnSelchangeNfsdiskcombo();
- afx_msg void OnAuthencheck();
- afx_msg void OnAttachcheck();
- afx_msg void OnSavenfs();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- void EnableNTPItem(BOOL bEnable);
- void EnableDDNSItem(BOOL bEnable);
- public:
- LONG m_lServerID;
- BOOL m_bChangeFlag;
- NET_DVR_EMAILCFG m_AccountEmailCfg;
- NET_DVR_NTPPARA m_NTPPara;
- NET_DVR_DDNSPARA m_DDNSPara;
- NET_DVR_NETAPPCFG m_NetAppPara;
- NET_DVR_NFSCFG m_NFSCfg;
-
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_REMOTENETCONFIG_H__46DCC693_7559_4436_B36C_817D9C9A874B__INCLUDED_)
|