diff options
Diffstat (limited to 'PE/reinsert.cpp')
-rw-r--r-- | PE/reinsert.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/PE/reinsert.cpp b/PE/reinsert.cpp index 3a8244b..c44354d 100644 --- a/PE/reinsert.cpp +++ b/PE/reinsert.cpp @@ -12,6 +12,7 @@ BOOL CALLBACK AboutDlgProc(HWND hW, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
+ Base::printm(M_INFO, "AboutDlgProc: uMsg = %i (0x%x)\n", uMsg, uMsg);
switch(uMsg)
{
case WM_COMMAND:
@@ -33,10 +34,10 @@ virtual int startup() throw (GeneralException) { Handle * iw; cdutils * cd; - DialogBox(0, MAKEINTRESOURCE(IDD_ABOUT), GetActiveWindow(), AboutDlgProc); - verbosity = M_INFO; + DialogBox(0, MAKEINTRESOURCE(IDD_ABOUT), GetActiveWindow(), AboutDlgProc); + ir = new Input("PE1.bin"); iw = new Output("PE1.bin", 0, 0); cd = new cdutils(ir, iw); |