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>
34 lines
651 B
C++
34 lines
651 B
C++
// ServerToolUserManagementDlg.h : 헤더 파일
|
|
//
|
|
#pragma once
|
|
#include "afxwin.h"
|
|
|
|
// CServerToolUserManagementDlg 대화 상자
|
|
class CServerToolUserManagementDlg : public CDialog
|
|
{
|
|
// 생성
|
|
public:
|
|
CServerToolUserManagementDlg(CWnd* pParent = NULL); // 표준 생성자
|
|
|
|
// 대화 상자 데이터
|
|
enum { IDD = IDD_USERMANAGEMENTDLG };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원
|
|
|
|
|
|
// 구현
|
|
protected:
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
virtual BOOL OnInitDialog();
|
|
|
|
afx_msg void OnBnClickedUserReg();
|
|
afx_msg void OnBnClickedUserEdit();
|
|
afx_msg void OnBnClickedUserDel();
|
|
|
|
private:
|
|
CListCtrl m_ctrlUserInfoList;
|
|
|
|
bool UserListSet();
|
|
}; |