Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
38 lines
758 B
C++
38 lines
758 B
C++
#pragma once
|
|
#include "afxwin.h"
|
|
|
|
|
|
/*!
|
|
\class CTAdminRegistrationDlg
|
|
툴 운영자 등록 다이얼로그
|
|
*/
|
|
class CTAdminRegistrationDlg : public CDialog
|
|
{
|
|
DECLARE_DYNAMIC(CTAdminRegistrationDlg)
|
|
|
|
public:
|
|
CTAdminRegistrationDlg(CWnd* pParent = NULL);
|
|
virtual ~CTAdminRegistrationDlg();
|
|
|
|
enum { IDD = IDD_TADMINREGISTRATIONDLG };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX);
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
virtual BOOL OnInitDialog();
|
|
|
|
private:
|
|
CComboBox m_ctrlTAdminLVCb;
|
|
|
|
CString m_strTAdminIDReg;
|
|
CString m_strTAdminPassReg;
|
|
CString m_strTAdminNameReg;
|
|
CString m_strTAdminLVReg;
|
|
CString m_strTAdminIPReg;
|
|
|
|
afx_msg void OnDestroy();
|
|
afx_msg void OnBnClickedAdminReg();
|
|
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
|
|
}; |