diff options
Diffstat (limited to 'pg.h')
-rw-r--r-- | pg.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,8 @@ #ifndef PG_H #define PG_H +#include <time.h> + #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); |