summaryrefslogtreecommitdiff
path: root/src/DbgPeopleView.h
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2023-07-09 20:59:16 +0100
committerAsh Wolf <ninji@wuffs.org>2023-07-09 20:59:16 +0100
commitc920fe38a19013b99f3f74e48da9724fb053c212 (patch)
tree6bb036fd3f61b85daceb26f74378eadcdd977db1 /src/DbgPeopleView.h
parent96a63139221587c6be9659c1e07eacd3a8e7f048 (diff)
downloadt2win-c920fe38a19013b99f3f74e48da9724fb053c212.tar.gz
t2win-c920fe38a19013b99f3f74e48da9724fb053c212.zip
support building from VC++ IDE, add resources
Diffstat (limited to '')
-rw-r--r--src/DbgPeopleView.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/DbgPeopleView.h b/src/DbgPeopleView.h
index 6be9d18..2a69527 100644
--- a/src/DbgPeopleView.h
+++ b/src/DbgPeopleView.h
@@ -3,18 +3,23 @@
class DbgPeopleView : public CFrameWnd {
DECLARE_DYNCREATE(DbgPeopleView)
- DECLARE_MESSAGE_MAP()
public:
DbgPeopleView();
~DbgPeopleView();
void SetPeople(T2PeopleArrayList *inList);
+ T2PeopleArrayList *mPeopleArrayList;
+
+ //{{AFX_VIRTUAL(DbgPeopleView)
+ //}}AFX_VIRTUAL
+
protected:
+ //{{AFX_MSG(DbgPeopleView)
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnDestroy();
-
- T2PeopleArrayList *mPeopleArrayList;
+ //}}AFX_MSG
+ DECLARE_MESSAGE_MAP()
};