From af19cbb098d6c8c1bea311b628ccb5f1ce897828 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Wed, 24 Nov 2010 20:14:54 +0100 Subject: Store last active time. --- pg.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pg.h') diff --git a/pg.h b/pg.h index 95a160c..6ff3178 100644 --- a/pg.h +++ b/pg.h @@ -1,6 +1,8 @@ #ifndef PG_H #define PG_H +#include + #include "channel.h" #include "user.h" #include "word.h" @@ -11,8 +13,8 @@ int pg_init(); int pg_upgrade(); void pg_dropall(); int pg_channel_get(struct channel_t *channel); -long pg_channel_file_get(int channel_id, struct channel_file_t *file); -void pg_channel_file_set(int channel_id, struct channel_file_t *file, long pos); +void pg_channel_file_get(int channel_id, struct channel_file_t *file, long *pos, time_t *time); +void pg_channel_file_set(int channel_id, struct channel_file_t *file, long pos, time_t time); void pg_user_set(int channel_id, struct user_t *user); void pg_users_get(int channel_id); void pg_word_set(int channel, struct word_t *word); -- cgit v1.2.3