about summary refs log tree commit diff stats
path: root/src/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h
index 075b5d7d..93d59895 100644
--- a/src/common.h
+++ b/src/common.h
@@ -27,7 +27,11 @@
 #include <glib.h>
 
 #if !GLIB_CHECK_VERSION(2,28,0)
-#define g_slist_free_full(items, free_func)      p_slist_free_full(items, free_func)
+#define g_slist_free_full(items, free_func)         p_slist_free_full(items, free_func)
+#endif
+
+#if !GLIB_CHECK_VERSION(2,30,0)
+#define g_utf8_substring(str, start_pos, end_pos)   p_utf8_substring(str, start_pos, end_pos)
 #endif
 
 #ifndef NOTIFY_CHECK_VERSION
@@ -50,6 +54,7 @@
     resource = NULL; \
 }
 
+gchar* p_utf8_substring(const gchar *str, glong start_pos, glong end_pos);
 void p_slist_free_full(GSList *items, GDestroyNotify free_func);
 void create_dir(char *name);
 char * str_replace(const char *string, const char *substr,