diff options
| author | frosty <gabriel@bwaaa.monster> | 2026-04-01 22:39:22 +0300 |
|---|---|---|
| committer | frosty <gabriel@bwaaa.monster> | 2026-04-01 22:39:22 +0300 |
| commit | 8176078105d3ce0331cf5deb3ff2e564d5221d05 (patch) | |
| tree | da0a33cf66b7c76c276e0cc3c2511f61b3558435 /src/Utility/Utility.h | |
| parent | 614bd26cb34b9b340e327d4b80927353bb5a5d0a (diff) | |
| download | omnisearch-8176078105d3ce0331cf5deb3ff2e564d5221d05.tar.gz | |
feat: configure search engines in user settings
Diffstat (limited to 'src/Utility/Utility.h')
| -rw-r--r-- | src/Utility/Utility.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Utility/Utility.h b/src/Utility/Utility.h index 3863bc2..822c972 100644 --- a/src/Utility/Utility.h +++ b/src/Utility/Utility.h @@ -9,6 +9,10 @@ int hex_to_int(char c); char *get_theme(const char *default_theme); char *get_locale(const char *default_locale); +int is_engine_id_enabled(const char *engine_id); +int get_user_engines(char ***out_ids, int *out_count); +int user_engines_contains(const char *engine_id, char **ids, int count); + int add_link_to_collection(const char *href, const char *label, const char *class_name, char ****collection, int **inner_counts, int current_count); |
