diff options
author | David Robillard <d@drobilla.net> | 2011-02-03 20:08:22 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-03 20:08:22 +0000 |
commit | 0c7ba16331f4219dba705acd19d0cd3599e4e50d (patch) | |
tree | 38e22bb0a78a228c8178258a3dc3113aadc536ef /sord/sord.h | |
parent | 5bc02bf31c689fe4a3758c8b484d220d4de33992 (diff) | |
download | sord-0c7ba16331f4219dba705acd19d0cd3599e4e50d.tar.gz sord-0c7ba16331f4219dba705acd19d0cd3599e4e50d.tar.bz2 sord-0c7ba16331f4219dba705acd19d0cd3599e4e50d.zip |
Add ability to set blank node prefix for parsing multiple files without conflict.
git-svn-id: http://svn.drobilla.net/sord/trunk@16 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'sord/sord.h')
-rw-r--r-- | sord/sord.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sord/sord.h b/sord/sord.h index 5b05587..2d702a6 100644 --- a/sord/sord.h +++ b/sord/sord.h @@ -360,14 +360,16 @@ SORD_API bool sord_read_file(Sord sord, const uint8_t* uri, - const SordNode graph); + const SordNode graph, + const uint8_t* blank_prefix); SORD_API bool sord_read_file_handle(Sord sord, FILE* fd, const uint8_t* base_uri, - const SordNode graph); + const SordNode graph, + const uint8_t* blank_prefix); /** @} */ |