summaryrefslogtreecommitdiff
path: root/src/DbgEventList.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/DbgEventList.h')
-rw-r--r--src/DbgEventList.h24
1 files changed, 17 insertions, 7 deletions
diff --git a/src/DbgEventList.h b/src/DbgEventList.h
index d6ae2cb..7a7e6ed 100644
--- a/src/DbgEventList.h
+++ b/src/DbgEventList.h
@@ -1,19 +1,29 @@
#pragma once
#include "common.h"
+#include "resource.h"
class DbgEventList : public CDialog {
- DECLARE_MESSAGE_MAP()
-
public:
- DbgEventList(CWnd *pParentWnd);
+ 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:
- virtual void DoDataExchange(CDataExchange *pDX);
void RefreshEvents();
void AddEvents(LArray &array, const char *mode);
- afx_msg void OnEventStart();
- CListCtrl mList;
- T2TowerEvent *mTowerEvent;
+ //{{AFX_MSG(DbgEventList)
+ afx_msg void OnEventStart();
+ //}}AFX_MSG
+DECLARE_MESSAGE_MAP()
};