aboutsummaryrefslogtreecommitdiff
path: root/src/html.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-03-19 22:07:09 +0100
committerdec05eba <dec05eba@protonmail.com>2025-03-19 22:07:09 +0100
commite9ff36f9985e669317043f80b8edf5d17d4c0c3e (patch)
tree52d735151c165cb5575d479bf8edcccbe6142f93 /src/html.h
parent9d030864b347cea5bfda842a535312e41e9d0f75 (diff)
Add option to not show error notificationHEADmaster
Diffstat (limited to 'src/html.h')
-rw-r--r--src/html.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/html.h b/src/html.h
index 5ce2809..bfa8e08 100644
--- a/src/html.h
+++ b/src/html.h
@@ -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