aboutsummaryrefslogtreecommitdiff
path: root/src/html.h
diff options
context:
space:
mode:
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 987f281..327a39e 100644
--- a/src/html.h
+++ b/src/html.h
@@ -1,11 +1,13 @@
#ifndef HTML_H
#define HTML_H
+typedef struct cJSON cJSON;
+
typedef struct {
char *plugin;
char *title;
char *link;
- struct json_object_s *json_data;
+ cJSON *json_data;
} TrackedHtml;
int add_html(const char *name, const char *url, char *html_config_dir, char *program_dir, const char *start_after);