| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 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 |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ | 16 */ |
| 17 | 17 |
| 18 #include "PluginStdAfx.h" | 18 #include "PluginStdAfx.h" |
| 19 | 19 |
| 20 #include "PluginClass.h" | 20 #include "PluginClass.h" |
| 21 #include "PluginSettings.h" | 21 #include "PluginSettings.h" |
| 22 #include "PluginSystem.h" | 22 #include "PluginSystem.h" |
| 23 #include "PluginFilter.h" | 23 #include "PluginFilter.h" |
| 24 #include "PluginMimeFilterClient.h" | 24 #include "PluginMimeFilterClient.h" |
| 25 #include "AdblockPlusClient.h" | 25 #include "AdblockPlusClient.h" |
| 26 #include "PluginClientBase.h" | 26 #include "PluginClientBase.h" |
| 27 #include "PluginClientFactory.h" | 27 #include "PluginClientFactory.h" |
| 28 #include "PluginMutex.h" | |
| 29 #include "sddl.h" | |
| 30 #include "PluginUtil.h" | 28 #include "PluginUtil.h" |
| 31 #include "PluginUserSettings.h" | |
| 32 #include "../shared/Utils.h" | 29 #include "../shared/Utils.h" |
| 33 #include "../shared/Dictionary.h" | 30 #include "../shared/Dictionary.h" |
| 34 #include "../shared/IE_version.h" | 31 #include "../shared/IE_version.h" |
| 35 #include "../shared/Version.h" | 32 #include "../shared/Version.h" |
| 36 #include <thread> | 33 #include <thread> |
|
Oleksandr
2015/03/19 04:39:32
thread, PluginUserSettings.h, sddl.h, PluginMutex.
Eric
2015/03/20 09:09:45
I removed all but <thread>. I left that one in bec
| |
| 37 #include <array> | 34 #include <array> |
| 38 | 35 |
| 39 #ifdef DEBUG_HIDE_EL | 36 #ifdef DEBUG_HIDE_EL |
| 40 DWORD profileTime = 0; | 37 DWORD profileTime = 0; |
| 41 #endif | 38 #endif |
| 42 | 39 |
| 43 extern CComModule _Module; | 40 extern CComModule _Module; |
| 44 | 41 |
| 45 typedef HANDLE (WINAPI *OPENTHEMEDATA)(HWND, LPCWSTR); | 42 typedef HANDLE (WINAPI *OPENTHEMEDATA)(HWND, LPCWSTR); |
| 46 typedef HRESULT (WINAPI *DRAWTHEMEBACKGROUND)(HANDLE, HDC, INT, INT, LPRECT, LPR ECT); | 43 typedef HRESULT (WINAPI *DRAWTHEMEBACKGROUND)(HANDLE, HDC, INT, INT, LPRECT, LPR ECT); |
| (...skipping 1715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1762 s_criticalSectionLocal.Unlock(); | 1759 s_criticalSectionLocal.Unlock(); |
| 1763 | 1760 |
| 1764 } | 1761 } |
| 1765 } | 1762 } |
| 1766 } | 1763 } |
| 1767 | 1764 |
| 1768 hTabWnd = ::GetWindow(hTabWnd, GW_HWNDNEXT); | 1765 hTabWnd = ::GetWindow(hTabWnd, GW_HWNDNEXT); |
| 1769 } | 1766 } |
| 1770 return hTabWnd; | 1767 return hTabWnd; |
| 1771 } | 1768 } |
| LEFT | RIGHT |