2014-02-01 21:18:15 +00:00
|
|
|
#include "glib.h"
|
|
|
|
|
2020-07-07 14:18:57 +02:00
|
|
|
void load_preferences(void** state);
|
|
|
|
void close_preferences(void** state);
|
2014-02-01 21:18:15 +00:00
|
|
|
|
2020-07-07 14:18:57 +02:00
|
|
|
void init_chat_sessions(void** state);
|
|
|
|
void close_chat_sessions(void** state);
|
2015-01-06 21:22:09 +00:00
|
|
|
|
2020-07-07 14:18:57 +02:00
|
|
|
int utf8_pos_to_col(char* str, int utf8_pos);
|
2015-01-27 22:13:09 +00:00
|
|
|
|
2014-02-01 21:18:15 +00:00
|
|
|
void glist_set_cmp(GCompareFunc func);
|
2021-08-26 00:28:49 +00:00
|
|
|
int glist_contents_equal(const void* actual, const void* expected);
|