blob: 7a7e6ed6716d3e9c79256cb66e3b9a746f0eed01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#pragma once
#include "common.h"
#include "resource.h"
class DbgEventList : public CDialog {
public:
DbgEventList(CWnd *pParent = NULL);
//{{AFX_DATA(DbgEventList)
enum { IDD = IDD_DBG_EVENT_LIST };
CListCtrl mList;
T2TowerEvent *mTowerEvent;
//}}AFX_DATA
//{{AFX_VIRTUAL(DbgEventList)
public:
virtual BOOL OnInitDialog();
protected:
virtual void DoDataExchange(CDataExchange *pDX);
protected:
void RefreshEvents();
void AddEvents(LArray &array, const char *mode);
//{{AFX_MSG(DbgEventList)
afx_msg void OnEventStart();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
|