summaryrefslogtreecommitdiff
path: root/pgsql.h
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2012-05-01 10:07:37 +0200
committerAndreas Baumann <abaumann@yahoo.com>2012-05-01 10:07:37 +0200
commitd04a9d1fe99eb0e1661cf7f2169b3f7dd0792efc (patch)
tree089e8666e793001c53f15e9091db2e1ee6cd3567 /pgsql.h
parent8811c74439ef985fabd781584d1a9ddf3b627fc3 (diff)
downloadpgfuse-d04a9d1fe99eb0e1661cf7f2169b3f7dd0792efc.tar.gz
pgfuse-d04a9d1fe99eb0e1661cf7f2169b3f7dd0792efc.tar.bz2
more cleanup around 64-bit id/inodes
Diffstat (limited to 'pgsql.h')
-rw-r--r--pgsql.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/pgsql.h b/pgsql.h
index e12e4a6..39c6ca7 100644
--- a/pgsql.h
+++ b/pgsql.h
@@ -70,11 +70,11 @@ int psql_rollback( PGconn *conn );
/* --- the filesystem functions --- */
-int psql_path_to_id( PGconn *conn, const char *path );
+int64_t psql_path_to_id( PGconn *conn, const char *path );
-int psql_read_meta( PGconn *conn, const int64_t id, const char *path, PgMeta *meta );
+int64_t psql_read_meta( PGconn *conn, const int64_t id, const char *path, PgMeta *meta );
-int psql_read_meta_from_path( PGconn *conn, const char *path, PgMeta *meta );
+int64_t psql_read_meta_from_path( PGconn *conn, const char *path, PgMeta *meta );
int psql_write_meta( PGconn *conn, const int64_t id, const char *path, PgMeta meta );