| LEFT | RIGHT |
| 1 #ifndef COMMUNICATION_H | 1 #ifndef COMMUNICATION_H |
| 2 #define COMMUNICATION_H | 2 #define COMMUNICATION_H |
| 3 | 3 |
| 4 #include <memory> | 4 #include <memory> |
| 5 #include <sstream> | 5 #include <sstream> |
| 6 #include <stdexcept> | 6 #include <stdexcept> |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 #include <Windows.h> | 10 #include <Windows.h> |
| 11 | 11 |
| 12 namespace Communication | 12 namespace Communication |
| 13 { | 13 { |
| 14 extern const std::wstring pipeName; | 14 extern const std::wstring pipeName; |
| 15 extern std::wstring browserSID; | 15 extern std::wstring browserSID; |
| 16 | 16 |
| 17 enum ProcType : uint32_t { | 17 enum ProcType : uint32_t { |
| 18 PROC_MATCHES, | 18 PROC_MATCHES, |
| 19 PROC_HIDING_ENABLED_ON_DOMAIN, | |
| 20 PROC_GET_ELEMHIDE_SELECTORS, | 19 PROC_GET_ELEMHIDE_SELECTORS, |
| 21 PROC_AVAILABLE_SUBSCRIPTIONS, | 20 PROC_AVAILABLE_SUBSCRIPTIONS, |
| 22 PROC_LISTED_SUBSCRIPTIONS, | 21 PROC_LISTED_SUBSCRIPTIONS, |
| 23 PROC_SET_SUBSCRIPTION, | 22 PROC_SET_SUBSCRIPTION, |
| 24 PROC_ADD_SUBSCRIPTION, | 23 PROC_ADD_SUBSCRIPTION, |
| 25 PROC_REMOVE_SUBSCRIPTION, | 24 PROC_REMOVE_SUBSCRIPTION, |
| 26 PROC_UPDATE_ALL_SUBSCRIPTIONS, | 25 PROC_UPDATE_ALL_SUBSCRIPTIONS, |
| 27 PROC_GET_EXCEPTION_DOMAINS, | 26 PROC_GET_EXCEPTION_DOMAINS, |
| 28 PROC_IS_WHITELISTED_URL, | 27 PROC_IS_WHITELISTED_URL, |
| 28 PROC_IS_ELEMHIDE_WHITELISTED_ON_URL, |
| 29 PROC_ADD_FILTER, | 29 PROC_ADD_FILTER, |
| 30 PROC_REMOVE_FILTER, | 30 PROC_REMOVE_FILTER, |
| 31 PROC_SET_PREF, | 31 PROC_SET_PREF, |
| 32 PROC_GET_PREF, | 32 PROC_GET_PREF, |
| 33 PROC_IS_FIRST_RUN_ACTION_NEEDED, | 33 PROC_IS_FIRST_RUN_ACTION_NEEDED, |
| 34 PROC_CHECK_FOR_UPDATES, | 34 PROC_CHECK_FOR_UPDATES, |
| 35 PROC_GET_DOCUMENTATION_LINK, | 35 PROC_GET_DOCUMENTATION_LINK, |
| 36 PROC_TOGGLE_PLUGIN_ENABLED, | 36 PROC_TOGGLE_PLUGIN_ENABLED, |
| 37 PROC_GET_HOST, | 37 PROC_GET_HOST, |
| 38 PROC_COMPARE_VERSIONS | 38 PROC_COMPARE_VERSIONS |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 | 193 |
| 194 InputBuffer ReadMessage(); | 194 InputBuffer ReadMessage(); |
| 195 void WriteMessage(OutputBuffer& message); | 195 void WriteMessage(OutputBuffer& message); |
| 196 | 196 |
| 197 protected: | 197 protected: |
| 198 HANDLE pipe; | 198 HANDLE pipe; |
| 199 }; | 199 }; |
| 200 } | 200 } |
| 201 | 201 |
| 202 #endif | 202 #endif |
| LEFT | RIGHT |