| 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-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 #endif | 94 #endif |
| 95 | 95 |
| 96 #define DEBUG_ERROR_LOG(err, id, subid, description) LogQueue::PostPluginError(e
rr, id, subid, description); | 96 #define DEBUG_ERROR_LOG(err, id, subid, description) LogQueue::PostPluginError(e
rr, id, subid, description); |
| 97 #define DEBUG_SYSTEM_EXCEPTION(ex, id, subid, description) CPluginDebug::DebugSy
stemException(ex, id, subid, description) | 97 #define DEBUG_SYSTEM_EXCEPTION(ex, id, subid, description) CPluginDebug::DebugSy
stemException(ex, id, subid, description) |
| 98 #define DEBUG_SELFTEST(x) | 98 #define DEBUG_SELFTEST(x) |
| 99 | 99 |
| 100 // ---------------------------------------------------------------------------- | 100 // ---------------------------------------------------------------------------- |
| 101 // Miscellaneous | 101 // Miscellaneous |
| 102 // ---------------------------------------------------------------------------- | 102 // ---------------------------------------------------------------------------- |
| 103 | 103 |
| 104 // Status bar pane name | |
| 105 #define STATUSBAR_PANE_NAME L"AdblockPlusStatusBarPane" | |
| 106 | |
| 107 // Status bar pane number | |
| 108 #define STATUSBAR_PANE_NUMBER 2 | |
| 109 | |
| 110 #define ENGINE_STARTUP_TIMEOUT 10000 | 104 #define ENGINE_STARTUP_TIMEOUT 10000 |
| 111 | 105 |
| 112 | 106 |
| 113 | 107 |
| 114 #endif // _CONFIG_H | 108 #endif // _CONFIG_H |
| OLD | NEW |