diff options
Diffstat (limited to 'src/common/proto-irc.h')
-rw-r--r-- | src/common/proto-irc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/proto-irc.h b/src/common/proto-irc.h index 6c075795..0f72c644 100644 --- a/src/common/proto-irc.h +++ b/src/common/proto-irc.h @@ -25,6 +25,7 @@ #define MESSAGE_TAGS_DATA_INIT \ { \ + NULL, /* account name */ \ (time_t)0, /* timestamp */ \ } @@ -36,9 +37,12 @@ */ typedef struct { + char *account; time_t timestamp; } message_tags_data; +void message_tags_data_free (message_tags_data *tags_data); + void proto_fill_her_up (server *serv); #endif |