OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "PluginFilter.h" | 23 #include "PluginFilter.h" |
24 #include "PluginMimeFilterClient.h" | 24 #include "PluginMimeFilterClient.h" |
25 #include "PluginClient.h" | 25 #include "PluginClient.h" |
26 #include "PluginClientFactory.h" | 26 #include "PluginClientFactory.h" |
27 #include "PluginMutex.h" | 27 #include "PluginMutex.h" |
28 #include "sddl.h" | 28 #include "sddl.h" |
29 #include "PluginUtil.h" | 29 #include "PluginUtil.h" |
30 #include "PluginUserSettings.h" | 30 #include "PluginUserSettings.h" |
31 #include "../shared/Utils.h" | 31 #include "../shared/Utils.h" |
32 #include "../shared/Dictionary.h" | 32 #include "../shared/Dictionary.h" |
33 #include "../shared/IE_version.h" | 33 #include "IeVersion.h" |
34 #include <thread> | 34 #include <thread> |
35 #include <array> | 35 #include <array> |
36 | 36 |
37 #ifdef DEBUG_HIDE_EL | 37 #ifdef DEBUG_HIDE_EL |
38 DWORD profileTime = 0; | 38 DWORD profileTime = 0; |
39 #endif | 39 #endif |
40 | 40 |
41 typedef HANDLE (WINAPI *OPENTHEMEDATA)(HWND, LPCWSTR); | 41 typedef HANDLE (WINAPI *OPENTHEMEDATA)(HWND, LPCWSTR); |
42 typedef HRESULT (WINAPI *DRAWTHEMEBACKGROUND)(HANDLE, HDC, INT, INT, LPRECT, LPR
ECT); | 42 typedef HRESULT (WINAPI *DRAWTHEMEBACKGROUND)(HANDLE, HDC, INT, INT, LPRECT, LPR
ECT); |
43 typedef HRESULT (WINAPI *CLOSETHEMEDATA)(HANDLE); | 43 typedef HRESULT (WINAPI *CLOSETHEMEDATA)(HANDLE); |
(...skipping 1689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1733 s_criticalSectionLocal.Unlock(); | 1733 s_criticalSectionLocal.Unlock(); |
1734 | 1734 |
1735 } | 1735 } |
1736 } | 1736 } |
1737 } | 1737 } |
1738 | 1738 |
1739 hTabWnd = ::GetWindow(hTabWnd, GW_HWNDNEXT); | 1739 hTabWnd = ::GetWindow(hTabWnd, GW_HWNDNEXT); |
1740 } | 1740 } |
1741 return hTabWnd; | 1741 return hTabWnd; |
1742 } | 1742 } |
OLD | NEW |