aboutsummaryrefslogtreecommitdiffstats
path: root/src/html.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2010-10-06 20:03:57 +0400
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2010-10-06 20:03:57 +0400
commit6b306ab8752befc28d259be55495f8249cc2df24 (patch)
tree0fa3d471aef61925563709e0f8ee5667b57c7a9d /src/html.h
parent8d0053734fb5a4ccd8c3bda731e6b7c8261c6f67 (diff)
downloadrspamd-6b306ab8752befc28d259be55495f8249cc2df24.tar.gz
rspamd-6b306ab8752befc28d259be55495f8249cc2df24.zip
Fixes types (use glib ones) no functional change.
Now all comments in commit logs beginning with '*' would be included in changelog, so important changes would be separated from small ones.
Diffstat (limited to 'src/html.h')
-rw-r--r--src/html.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/html.h b/src/html.h
index e81a9d11c..048598f37 100644
--- a/src/html.h
+++ b/src/html.h
@@ -195,20 +195,20 @@ typedef enum
struct html_tag {
tag_id_t id;
- const char *name;
- int flags;
+ const gchar *name;
+ gint flags;
};
struct html_node {
struct html_tag *tag;
- int flags;
+ gint flags;
};
/* Forwarded declaration */
struct worker_task;
-gboolean add_html_node (struct worker_task *task, memory_pool_t *pool, struct mime_text_part *part, char *tag_text, GNode **cur_level);
-struct html_tag * get_tag_by_name (const char *name);
-void decode_entitles (char *s, guint *len);
+gboolean add_html_node (struct worker_task *task, memory_pool_t *pool, struct mime_text_part *part, gchar *tag_text, GNode **cur_level);
+struct html_tag * get_tag_by_name (const gchar *name);
+void decode_entitles (gchar *s, guint *len);
#endif