diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-03-19 22:07:09 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-03-19 22:07:09 +0100 |
commit | e9ff36f9985e669317043f80b8edf5d17d4c0c3e (patch) | |
tree | 52d735151c165cb5575d479bf8edcccbe6142f93 /src/html.h | |
parent | 9d030864b347cea5bfda842a535312e41e9d0f75 (diff) |
Diffstat (limited to 'src/html.h')
-rw-r--r-- | src/html.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,8 @@ #ifndef HTML_H #define HTML_H +#include <stdbool.h> + typedef struct cJSON cJSON; typedef struct fallback fallback; @@ -13,6 +15,6 @@ typedef struct { /* Modifies @html_config_dir */ int add_html(const char *name, const char *url, char *html_config_dir, char *program_dir, const char *start_after); -int sync_html(TrackedHtml *tracked_html, char *program_dir, const char *download_dir, char *html_config_dir); +int sync_html(TrackedHtml *tracked_html, char *program_dir, const char *download_dir, char *html_config_dir, bool show_error_notifications); #endif |