mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-16 10:40:19 +00:00
server-time for all numerical messages.
This commit is contained in:
@@ -916,6 +916,20 @@ PrintTextf (session *sess, char *format, ...)
|
||||
g_free (buf);
|
||||
}
|
||||
|
||||
void
|
||||
PrintTextTimeStampf (session *sess, time_t timestamp, char *format, ...)
|
||||
{
|
||||
va_list args;
|
||||
char *buf;
|
||||
|
||||
va_start (args, format);
|
||||
buf = g_strdup_vprintf (format, args);
|
||||
va_end (args);
|
||||
|
||||
PrintTextTimeStamp (sess, buf, timestamp);
|
||||
g_free (buf);
|
||||
}
|
||||
|
||||
/* Print Events stuff here --AGL */
|
||||
|
||||
/* Consider the following a NOTES file:
|
||||
|
||||
Reference in New Issue
Block a user