OLD | NEW |
1 #include "PluginStdAfx.h" | 1 #include "PluginStdAfx.h" |
2 | 2 |
3 #include "PluginClass.h" | 3 #include "PluginClass.h" |
4 #include "PluginSettings.h" | 4 #include "PluginSettings.h" |
5 #include "PluginSystem.h" | 5 #include "PluginSystem.h" |
6 #include "PluginFilter.h" | 6 #include "PluginFilter.h" |
7 #include "PluginMimeFilterClient.h" | 7 #include "PluginMimeFilterClient.h" |
8 #include "PluginClient.h" | 8 #include "PluginClient.h" |
9 #include "PluginClientFactory.h" | 9 #include "PluginClientFactory.h" |
10 #include "PluginMutex.h" | 10 #include "PluginMutex.h" |
11 #include "sddl.h" | 11 #include "sddl.h" |
12 #include "PluginUtil.h" | 12 #include "PluginUtil.h" |
13 #include "PluginUserSettings.h" | 13 #include "PluginUserSettings.h" |
14 #include "../shared/Utils.h" | 14 #include "../shared/Utils.h" |
15 #include "../shared/Dictionary.h" | 15 #include "../shared/Dictionary.h" |
16 #include "../shared/IE_version.h" | 16 #include "IE_Version.h" |
17 #include <thread> | 17 #include <thread> |
18 #include <array> | 18 #include <array> |
19 | 19 |
20 #ifdef DEBUG_HIDE_EL | 20 #ifdef DEBUG_HIDE_EL |
21 DWORD profileTime = 0; | 21 DWORD profileTime = 0; |
22 #endif | 22 #endif |
23 | 23 |
24 typedef HANDLE (WINAPI *OPENTHEMEDATA)(HWND, LPCWSTR); | 24 typedef HANDLE (WINAPI *OPENTHEMEDATA)(HWND, LPCWSTR); |
25 typedef HRESULT (WINAPI *DRAWTHEMEBACKGROUND)(HANDLE, HDC, INT, INT, LPRECT, LPR
ECT); | 25 typedef HRESULT (WINAPI *DRAWTHEMEBACKGROUND)(HANDLE, HDC, INT, INT, LPRECT, LPR
ECT); |
26 typedef HRESULT (WINAPI *CLOSETHEMEDATA)(HANDLE); | 26 typedef HRESULT (WINAPI *CLOSETHEMEDATA)(HANDLE); |
(...skipping 1827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1854 } | 1854 } |
1855 } | 1855 } |
1856 } | 1856 } |
1857 | 1857 |
1858 hTabWnd = ::GetWindow(hTabWnd, GW_HWNDNEXT); | 1858 hTabWnd = ::GetWindow(hTabWnd, GW_HWNDNEXT); |
1859 } | 1859 } |
1860 | 1860 |
1861 return hTabWnd; | 1861 return hTabWnd; |
1862 | 1862 |
1863 } | 1863 } |
OLD | NEW |