DragonNest/Server/ServiceMonitorEx/Source/ChangePasswordDialog.h

42 lines
831 B
C
Raw Normal View History

2024-12-19 09:48:26 +08:00
#pragma once
// CChangePasswordDialog <20><>ȭ <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
#include "resource.h"
class CNetSession;
struct ComboBoxMonitorUser
{
int nSelect;
char szUserName[NAMELENMAX];
int nMonitorLevel;
};
class CChangePasswordDialog : public CDialog
{
DECLARE_DYNAMIC(CChangePasswordDialog)
public:
CChangePasswordDialog(CWnd* pParent = NULL); // ǥ<><C7A5> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
virtual ~CChangePasswordDialog();
void SetSession(CNetSession* pSession);
// <20><>ȭ <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
enum { IDD = IDD_CHGPWDLG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
DECLARE_MESSAGE_MAP()
public:
virtual BOOL OnInitDialog();
public:
afx_msg void OnBnClickedCancel();
afx_msg void OnBnClickedSummit();
private:
std::vector<ComboBoxMonitorUser> m_MonitorUser;
CEdit m_Password;
CNetSession* m_pSession;
};