summaryrefslogtreecommitdiff
path: root/pgsql.h
diff options
context:
space:
mode:
Diffstat (limited to 'pgsql.h')
-rw-r--r--pgsql.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/pgsql.h b/pgsql.h
index 0214ea4..8ed461d 100644
--- a/pgsql.h
+++ b/pgsql.h
@@ -68,7 +68,11 @@ int psql_rollback( PGconn *conn );
/* --- the filesystem functions --- */
-int psql_get_meta( PGconn *conn, const char *path, PgMeta *meta );
+int psql_path_to_id( PGconn *conn, const char *path );
+
+int psql_read_meta( PGconn *conn, const int id, const char *path, PgMeta *meta );
+
+int psql_read_meta_from_path( PGconn *conn, const char *path, PgMeta *meta );
int psql_write_meta( PGconn *conn, const int id, const char *path, PgMeta meta );