Initial commit: ROW Client source code
Game client codebase including: - CharacterActionControl: Character and creature management - GlobalScript: Network, items, skills, quests, utilities - RYLClient: Main client application with GUI and event handlers - Engine: 3D rendering engine (RYLGL) - MemoryManager: Custom memory allocation - Library: Third-party dependencies (DirectX, boost, etc.) - Tools: Development utilities 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
43
Tools/DumpStatistics/DumpStatisticsDlg.h
Normal file
43
Tools/DumpStatistics/DumpStatisticsDlg.h
Normal file
@@ -0,0 +1,43 @@
|
||||
// DumpStatisticsDlg.h : <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
|
||||
//
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "DirDialog.h"
|
||||
|
||||
class CDumpFileParser ;
|
||||
|
||||
// CDumpStatisticsDlg <20><>ȭ <20><><EFBFBD><EFBFBD>
|
||||
class CDumpStatisticsDlg : public CDialog
|
||||
{
|
||||
private :
|
||||
CDirDialog m_DirDialog ;
|
||||
CDumpFileParser* m_pDumpFileParser ;
|
||||
// <20><><EFBFBD><EFBFBD>
|
||||
public:
|
||||
CDumpStatisticsDlg(CWnd* pParent = NULL); // ǥ<><C7A5> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
|
||||
// <20><>ȭ <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
enum { IDD = IDD_DUMPSTATISTICS_DIALOG };
|
||||
|
||||
protected:
|
||||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV <20><><EFBFBD><EFBFBD>
|
||||
|
||||
// <20><><EFBFBD><EFBFBD>
|
||||
protected:
|
||||
HICON m_hIcon;
|
||||
|
||||
// <20><EFBFBD><DEBD><EFBFBD> <20><> <20>Լ<EFBFBD><D4BC><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>߽<EFBFBD><DFBD>ϴ<EFBFBD>.
|
||||
virtual BOOL OnInitDialog();
|
||||
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
|
||||
afx_msg void OnPaint();
|
||||
afx_msg HCURSOR OnQueryDragIcon();
|
||||
DECLARE_MESSAGE_MAP()
|
||||
public:
|
||||
afx_msg void OnBnClickedBtncurrentdirectory();
|
||||
afx_msg void OnBnClickedBtndumpprocessing();
|
||||
afx_msg void OnDestroy();
|
||||
afx_msg void OnNMCustomdrawDumpprogress(NMHDR *pNMHDR, LRESULT *pResult);
|
||||
CString m_DumpFile;
|
||||
CString m_strBasePath;
|
||||
};
|
||||
Reference in New Issue
Block a user