diff options
author | David Robillard <d@drobilla.net> | 2012-01-28 01:37:28 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-01-28 01:37:28 +0000 |
commit | ce2c5cc2036154c2b3ce8850c35e34c0bffeef1f (patch) | |
tree | 4dea45a4376110c75fdb8d1c6b9bf3b87b002635 /src/lilv_internal.h | |
parent | e4d3f6140cc167580ec43de6fc3ea4562aaba63e (diff) | |
download | lilv-ce2c5cc2036154c2b3ce8850c35e34c0bffeef1f.tar.gz lilv-ce2c5cc2036154c2b3ce8850c35e34c0bffeef1f.tar.bz2 lilv-ce2c5cc2036154c2b3ce8850c35e34c0bffeef1f.zip |
Update state interface to support multiple state snapshots with shared files.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3967 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/lilv_internal.h')
-rw-r--r-- | src/lilv_internal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lilv_internal.h b/src/lilv_internal.h index 0049d01..18aaed5 100644 --- a/src/lilv_internal.h +++ b/src/lilv_internal.h @@ -349,8 +349,9 @@ char* lilv_expand(const char* path); char* lilv_dirname(const char* path); int lilv_copy_file(const char* src, const char* dst); bool lilv_path_exists(const char* path, void* ignored); +char* lilv_path_absolute(const char* path); bool lilv_path_is_absolute(const char* path); -char* lilv_get_latest_copy(const char* path); +char* lilv_get_latest_copy(const char* path, const char* copy_path); char* lilv_path_relative_to(const char* path, const char* base); bool lilv_path_is_child(const char* path, const char* dir); int lilv_flock(FILE* file, bool lock); @@ -358,6 +359,7 @@ char* lilv_realpath(const char* path); int lilv_symlink(const char* oldpath, const char* newpath); int lilv_mkdir_p(const char* path); char* lilv_path_join(const char* a, const char* b); +bool lilv_file_equals(const char* a_path, const char* b_path); char* lilv_find_free_path(const char* in_path, |