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>
54 lines
1.2 KiB
C++
54 lines
1.2 KiB
C++
// RylServerRunSetupDlg.h : 헤더 파일
|
|
//
|
|
|
|
#pragma once
|
|
#include "afxwin.h"
|
|
#include "afxcmn.h"
|
|
|
|
|
|
// CRylServerRunSetupDlg 대화 상자
|
|
class CRylServerRunSetupDlg : public CDialog
|
|
{
|
|
// 생성
|
|
public:
|
|
CRylServerRunSetupDlg(CWnd* pParent = NULL); // 표준 생성자
|
|
|
|
// 대화 상자 데이터
|
|
enum { IDD = IDD_SERVERRUNSETUP_DIALOG };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원
|
|
|
|
// 구현
|
|
protected:
|
|
HICON m_hIcon;
|
|
|
|
// 메시지 맵 함수를 생성했습니다.
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
|
|
afx_msg void OnPaint();
|
|
afx_msg HCURSOR OnQueryDragIcon();
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
afx_msg void OnLvnItemchangedRuninfoList(NMHDR *pNMHDR, LRESULT *pResult);
|
|
afx_msg void OnCbnSelchangeServergroupCb();
|
|
afx_msg void OnCbnSelchangeServertypeCb();
|
|
afx_msg void OnCbnSelchangeZoneCb();
|
|
afx_msg void OnCbnSelchangeChannelCb();
|
|
afx_msg void OnBnClickedMatchBtn();
|
|
|
|
private:
|
|
CString m_strServerID;
|
|
unsigned long m_dwServerID;
|
|
CString m_strSelServerID;
|
|
|
|
CComboBox m_ctrlServerTypeCb;
|
|
CComboBox m_ctrlServerGroupCb;
|
|
CComboBox m_ctrlZoneCb;
|
|
CComboBox m_ctrlChannelCb;
|
|
|
|
CListCtrl m_ctrlRunInfoList;
|
|
|
|
void RunInfoListSet(); // 실행 정보 리스트 컨트롤 갱신
|
|
void ServerIDSet(); // 서버 아이디 표시
|
|
}; |