Restructure repository to include all source folders
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>
This commit is contained in:
49
Server/AdminTool/AdminToolClient/TAdminManagementDlg.h
Normal file
49
Server/AdminTool/AdminToolClient/TAdminManagementDlg.h
Normal file
@@ -0,0 +1,49 @@
|
||||
#pragma once
|
||||
#include "afxcmn.h"
|
||||
|
||||
|
||||
/*!
|
||||
\class CTAdminManagementDlg
|
||||
툴 운영자 관리 다이얼로그
|
||||
*/
|
||||
class CTAdminManagementDlg : public CDialog
|
||||
{
|
||||
DECLARE_DYNAMIC(CTAdminManagementDlg)
|
||||
|
||||
public:
|
||||
CTAdminManagementDlg(CWnd* pParent = NULL);
|
||||
virtual ~CTAdminManagementDlg();
|
||||
|
||||
enum { IDD = IDD_TADMINMANAGEMENTDLG };
|
||||
|
||||
protected:
|
||||
virtual void DoDataExchange(CDataExchange* pDX);
|
||||
|
||||
DECLARE_MESSAGE_MAP()
|
||||
|
||||
virtual BOOL OnInitDialog();
|
||||
afx_msg void OnDestroy();
|
||||
|
||||
private:
|
||||
CListCtrl m_ctrlTAdminList;
|
||||
CImageList m_imgLargeImage;
|
||||
CImageList m_imgSmallImage;
|
||||
|
||||
afx_msg void OnBnClickedTAdminregbutton();
|
||||
afx_msg void OnBnClickedTAdmineditbutton();
|
||||
afx_msg void OnBnClickedTadmindelbutton();
|
||||
afx_msg void OnBnClickedTAdminuselogbutton();
|
||||
|
||||
afx_msg void OnNMDblclkTadminlist(NMHDR *pNMHDR, LRESULT *pResult);
|
||||
afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
|
||||
afx_msg void OnTadmineditcm();
|
||||
afx_msg void OnTadminuselogcm();
|
||||
afx_msg void OnTadmindelcm();
|
||||
afx_msg void OnLvnColumnclickTadminlist(NMHDR *pNMHDR, LRESULT *pResult);
|
||||
|
||||
void TAdminRegistration();
|
||||
void TAdminEdit();
|
||||
void TAdminDelete();
|
||||
void TAdminUseLogView();
|
||||
BOOL TAdminListSet();
|
||||
};
|
||||
Reference in New Issue
Block a user