mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-25 16:46:21 +00:00
Basic chat log per user
This commit is contained in:
@@ -25,8 +25,14 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
typedef enum {
|
||||
IN,
|
||||
OUT
|
||||
} chat_log_direction_t;
|
||||
|
||||
void chat_log_init(void);
|
||||
void chat_log_chat(const char * const user, const char * const msg);
|
||||
void chat_log_chat(const char * const login, char *other,
|
||||
const char * const msg, chat_log_direction_t direction);
|
||||
void chat_log_close(void);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user