Clone
ixen <ixen@copyhandler.com>
committed
on 01 Nov 16
Enabled communication from non-elevated explorer to elevated Copy Handler (CH-285).
ParallelizeReaderWriter + 3 more
src/ch/MainWnd.cpp (+0 -1)
24 24 #include "FolderDialog.h"
25 25 #include "CustomCopyDlg.h"
26 26 #include "AboutDlg.h"
27 27 #include "..\common\ipcstructs.h"
28 28 #include "UpdateChecker.h"
29 29 #include "UpdaterDlg.h"
30 30 #include "MiniviewDlg.h"
31 31 #include "StatusDlg.h"
32 32 #include "ClipboardMonitor.h"
33 33 #include <boost/shared_array.hpp>
34 34 #include "../common/TShellExtMenuConfig.h"
35 35 #include "../libchcore/TConfig.h"
36 36 #include "../libchcore/TCoreException.h"
37 37 #include "../libchcore/TTaskManagerStatsSnapshot.h"
38 38 #include "../libchcore/TSQLiteSerializerFactory.h"
39 39 #include "TRecentPathsTools.h"
40 40 #include "DirectoryChooser.h"
41 41 #include "FeedbackHandlerFactory.h"
42 42 #include "../libchcore/TTask.h"
43 43 #include "TTaskManagerWrapper.h"
44   #include "shortcuts.h"
45 44 #include "CfgProperties.h"
46 45 #include "resource.h"
47 46
48 47 #ifdef _DEBUG
49 48 #define new DEBUG_NEW
50 49 #undef THIS_FILE
51 50 static char THIS_FILE[] = __FILE__;
52 51 #endif
53 52
54 53 #define CH_WNDCLASS_NAME   _T("Copy Handler Wnd Class")
55 54
56 55 #define WM_TRAYNOTIFY                   (WM_USER+0)
57 56
58 57 #define WM_ICON_NOTIFY                  WM_USER+4
59 58 #define WM_SHOWMINIVIEW                 WM_USER+3
60 59 #define WM_IDENTIFY                             WM_USER+11
61 60
62 61 #define TM_AUTOREMOVE                   1000
63 62 #define TM_ACCEPTING                    100
64 63