about summary refs log tree commit diff stats
path: root/src/chat_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/chat_log.h')
-rw-r--r--src/chat_log.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/chat_log.h b/src/chat_log.h
index 100786a6..61763d25 100644
--- a/src/chat_log.h
+++ b/src/chat_log.h
@@ -23,14 +23,16 @@
 #ifndef CHAT_LOG_H
 #define CHAT_LOG_H
 
+#include <glib.h>
+
 typedef enum {
     IN,
     OUT
 } chat_log_direction_t;
 
 void chat_log_init(void);
-void chat_log_chat(const char * const login, char *other, 
-    const char * const msg, chat_log_direction_t direction);
+void chat_log_chat(const gchar * const login, gchar *other, 
+    const gchar * const msg, chat_log_direction_t direction);
 void chat_log_close(void);
 
 #endif