summaryrefslogtreecommitdiff
path: root/pg.h
diff options
context:
space:
mode:
Diffstat (limited to 'pg.h')
-rw-r--r--pg.h6
1 files changed, 4 insertions, 2 deletions
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 <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);