| OLD | NEW |
| 1 #ifndef _CONFIG_H | 1 #ifndef _CONFIG_H |
| 2 #define _CONFIG_H | 2 #define _CONFIG_H |
| 3 | 3 |
| 4 // ---------------------------------------------------------------------------- | 4 // ---------------------------------------------------------------------------- |
| 5 // Filter configuration | 5 // Filter configuration |
| 6 // ---------------------------------------------------------------------------- | 6 // ---------------------------------------------------------------------------- |
| 7 | 7 |
| 8 // Define filter configuration | 8 // Define filter configuration |
| 9 #if (defined PRODUCT_SIMPLEADBLOCK) | 9 #if (defined PRODUCT_SIMPLEADBLOCK) |
| 10 #define FILTERS_PROTOCOL "http://" | 10 #define FILTERS_PROTOCOL "http://" |
| 11 #define FILTERS_HOST "simple-adblock.com/download/filterlists" | 11 #define FILTERS_HOST "simple-adblock.com/download/filterlists" |
| 12 #endif | 12 #endif |
| 13 | 13 |
| 14 // ---------------------------------------------------------------------------- | 14 // ---------------------------------------------------------------------------- |
| 15 // Define default protocols, hosts, scripts and pages | 15 // Define default protocols, hosts, scripts and pages |
| 16 // ---------------------------------------------------------------------------- | 16 // ---------------------------------------------------------------------------- |
| 17 | 17 |
| 18 #define USERS_PROTOCOL L"http://" | 18 #define USERS_PROTOCOL L"http://" |
| 19 #define USERS_PATH L"" | 19 #define USERS_PATH L"" |
| 20 #define USERS_PORT INTERNET_DEFAULT_HTTP_PORT | 20 #define USERS_PORT INTERNET_DEFAULT_HTTP_PORT |
| 21 | 21 |
| 22 #define USERS_SCRIPT_ACTIVATE L"/user_activate.php" | |
| 23 #define USERS_SCRIPT_SETTINGS L"/user_manager.php" | 22 #define USERS_SCRIPT_SETTINGS L"/user_manager.php" |
| 24 #define USERS_SCRIPT_ABOUT L"/user_about.php" | 23 #define USERS_SCRIPT_ABOUT L"/user_about.php" |
| 25 #define USERS_SCRIPT_FAQ L"/user_faq.php" | 24 #define USERS_SCRIPT_FAQ L"/user_faq.php" |
| 26 #define USERS_SCRIPT_FEEDBACK L"/user_feedback.php" | 25 #define USERS_SCRIPT_FEEDBACK L"/user_feedback.php" |
| 27 #define USERS_SCRIPT_INFO L"/user_info.php" | 26 #define USERS_SCRIPT_INFO L"/user_info.php" |
| 28 #define USERS_SCRIPT_WELCOME L"/user_welcome.php" | 27 #define USERS_SCRIPT_WELCOME L"/user_welcome.php" |
| 29 #define USERS_SCRIPT_USER_SETTINGS L"/user_mysettings.php" | 28 #define USERS_SCRIPT_USER_SETTINGS L"/user_mysettings.php" |
| 30 #define USERS_SCRIPT_INVITATION L"/user_invitation.php" | 29 #define USERS_SCRIPT_INVITATION L"/user_invitation.php" |
| 31 #define USERS_SCRIPT_ENTERLICENSE L"/user_enterlicense.php" | |
| 32 #define USERS_SCRIPT_UPGRADE L"/user_upgrade.php" | 30 #define USERS_SCRIPT_UPGRADE L"/user_upgrade.php" |
| 33 | 31 |
| 34 // ---------------------------------------------------------------------------- | 32 // ---------------------------------------------------------------------------- |
| 35 // Define actual configurations | 33 // Define actual configurations |
| 36 // ---------------------------------------------------------------------------- | 34 // ---------------------------------------------------------------------------- |
| 37 | 35 |
| 38 // AdBlocker configuration | 36 // AdBlocker configuration |
| 39 | 37 |
| 40 | 38 |
| 41 #if (defined PRODUCT_SIMPLEADBLOCK) | 39 #if (defined PRODUCT_SIMPLEADBLOCK) |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 #endif | 292 #endif |
| 295 | 293 |
| 296 // Status bar pane number | 294 // Status bar pane number |
| 297 #if (defined PRODUCT_SIMPLEADBLOCK) | 295 #if (defined PRODUCT_SIMPLEADBLOCK) |
| 298 #define STATUSBAR_PANE_NUMBER 2 | 296 #define STATUSBAR_PANE_NUMBER 2 |
| 299 #endif | 297 #endif |
| 300 | 298 |
| 301 | 299 |
| 302 | 300 |
| 303 #endif // _CONFIG_H | 301 #endif // _CONFIG_H |
| OLD | NEW |