aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-12 17:56:27 +0200
committerDavid Robillard <d@drobilla.net>2020-10-27 13:13:58 +0100
commit8b20b3e3bfd186b7b0bbd082a979c7fb86a52479 (patch)
treea4a8d9722f751ad8dab1e7c021b86f106d33dee6 /src/world.h
parent40c90e819d20d6933504ccb639896be223e10c3c (diff)
downloadserd-8b20b3e3bfd186b7b0bbd082a979c7fb86a52479.tar.gz
serd-8b20b3e3bfd186b7b0bbd082a979c7fb86a52479.tar.bz2
serd-8b20b3e3bfd186b7b0bbd082a979c7fb86a52479.zip
Add serd_world_get_blank()
Diffstat (limited to 'src/world.h')
-rw-r--r--src/world.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/world.h b/src/world.h
index 7aaf3689..6d32b529 100644
--- a/src/world.h
+++ b/src/world.h
@@ -19,11 +19,14 @@
#include "serd/serd.h"
+#include <stdint.h>
#include <stdio.h>
struct SerdWorldImpl {
SerdErrorSink error_sink;
void* error_handle;
+ uint32_t next_blank_id;
+ SerdNode* blank_node;
};
FILE* serd_world_fopen(SerdWorld* world, const char* path, const char* mode);