Implement the logging tab by reading the log file straight from disk.

This commit is contained in:
Mike Crowe
2006-05-30 11:29:59 +00:00
parent 975dbb6f22
commit 5ca7890013
5 changed files with 108 additions and 3 deletions

View File

@@ -32,10 +32,15 @@ private:
// Message Handlers
BEGIN_MSG_MAP(CLogPage)
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
COMMAND_HANDLER(IDC_REFRESH, BN_CLICKED, OnRefresh)
CHAIN_MSG_MAP(base)
END_MSG_MAP()
LRESULT OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnRefresh(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
void LoadLog();
};
#endif // LOGPAGE_H