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>
68 lines
1.2 KiB
C++
68 lines
1.2 KiB
C++
// WebInfoManagerDlg.h : 헤더 파일
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <RylServerLibrary/DB/DBComponent.h>
|
|
#include "afxwin.h"
|
|
#include <vector>
|
|
#include "afxcmn.h"
|
|
#include "ListViewCtrlEx.h"
|
|
|
|
typedef struct SERVERSTATUS
|
|
{
|
|
int id;
|
|
char name[20];
|
|
short status;
|
|
}*LPSERVERSTATUS;
|
|
|
|
class CECListCtrlEx: public CListCtrlEx
|
|
{
|
|
public:
|
|
const CString GetToolTip(int, int, UINT nFlags, BOOL&);
|
|
};
|
|
|
|
|
|
// CWebInfoManagerDlg 대화 상자
|
|
class CWebInfoManagerDlg : public CDialog
|
|
{
|
|
// 생성
|
|
public:
|
|
CWebInfoManagerDlg(CWnd* pParent = NULL); // 표준 생성자
|
|
|
|
// 대화 상자 데이터
|
|
enum { IDD = IDD_WEBINFOMANAGER_DIALOG };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원
|
|
|
|
|
|
void UpdateServerList();
|
|
// 구현
|
|
protected:
|
|
HICON m_hIcon;
|
|
|
|
BOOL m_InitFlag;
|
|
CDBComponent m_DBComp;
|
|
|
|
CString m_IP;
|
|
CString m_NAME;
|
|
CString m_USER;
|
|
CString m_PASS;
|
|
|
|
std::vector<SERVERSTATUS> m_vetServer;
|
|
|
|
|
|
// 메시지 맵 함수를 생성했습니다.
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnPaint();
|
|
afx_msg HCURSOR OnQueryDragIcon();
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
CStatic m_InfoTitle;
|
|
CECListCtrlEx m_ServerListCtrl;
|
|
CImageList m_imglstFlags;
|
|
afx_msg void OnBnClickedButton1();
|
|
afx_msg void OnBnClickedButton2();
|
|
};
|