implement server-time

This commit is contained in:
ailin-nemui 2019-08-20 01:47:52 +02:00 committed by Ailin Nemui
commit d535a79730
21 changed files with 323 additions and 39 deletions

View file

@ -3,7 +3,16 @@
#include <irssi/src/core/refstrings.h>
#if GLIB_CHECK_VERSION(2, 58, 0)
/* nothing */
/* callback implementation for GHashTable */
#undef i_refstr_release
void i_refstr_release(char *str)
{
if (str != NULL) {
g_ref_string_release(str);
}
}
#else
GHashTable *i_refstr_table;