added more overlay handler infos
[TortoiseGit.git] / src / crashrpt / maindlg.h
blob0d0afb76a04b4e60fd7d5b1848ac943339897069
1 #pragma once
3 #include "BaseDialog.h"
4 #include "Utility.h"
5 #include "CrashHandler.h"
8 ////////////////////////////// Class Definitions /////////////////////////////
10 // ===========================================================================
11 // CMainDlg
12 //
13 // See the module comment at top of file.
15 class CMainDlg : public CDialog
17 public:
18 CMainDlg(void);
19 ~CMainDlg(void);
21 protected:
22 LRESULT CALLBACK DlgFunc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
23 LRESULT DoCommand(int id);
25 public:
27 string m_sEmail; // Email: From
28 string m_sDescription; // Email: Body
29 TStrStrVector *m_pUDFiles; // Files <name,desc>
30 BOOL m_sendButton; // Display 'Send' or 'Save' button
33 /////////////////////////////////////////////////////////////////////////////