diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-07-05 19:04:06 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-07-05 19:04:06 +0100 |
commit | 5e61c1280c15ab9969b94cd360cafd4a11b2dd30 (patch) | |
tree | 1fdb60d771c4351b5aa5dcf1a43376c0558625a4 /src/DbgIPS.cpp | |
parent | c2efba6907fab934a04959b9bb644cf7141cc955 (diff) | |
download | t2win-5e61c1280c15ab9969b94cd360cafd4a11b2dd30.tar.gz t2win-5e61c1280c15ab9969b94cd360cafd4a11b2dd30.zip |
matched T2.exe
Diffstat (limited to '')
-rw-r--r-- | src/DbgIPS.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/DbgIPS.cpp b/src/DbgIPS.cpp index 1ff48bd..746ffc6 100644 --- a/src/DbgIPS.cpp +++ b/src/DbgIPS.cpp @@ -1,2 +1,20 @@ #include "DbgIPS.h" +#ifdef _DEBUG +#define new DEBUG_NEW +#undef THIS_FILE +static char THIS_FILE[] = __FILE__; +#endif + +DbgIPS::DbgIPS(CWnd *pParentWnd) + : CDialog(171, pParentWnd) +{ + Create(171, pParentWnd); +} + +/*virtual*/ void DbgIPS::DoDataExchange(CDataExchange *pDX) { + CWnd::DoDataExchange(pDX); +} + +BEGIN_MESSAGE_MAP(DbgIPS, CDialog) +END_MESSAGE_MAP() |