diff options
author | David Robillard <d@drobilla.net> | 2018-05-12 17:56:27 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-01-13 23:03:50 -0500 |
commit | c4df0038bcfba1676bbaaa98badd241ec7d0b55e (patch) | |
tree | ac16f53705066640efa3fd7eaaaf888923252017 /src/world.h | |
parent | 1752a00ebefb22564fb805d4c89deb39ec5e218b (diff) | |
download | serd-c4df0038bcfba1676bbaaa98badd241ec7d0b55e.tar.gz serd-c4df0038bcfba1676bbaaa98badd241ec7d0b55e.tar.bz2 serd-c4df0038bcfba1676bbaaa98badd241ec7d0b55e.zip |
Add serd_world_get_blank()
Diffstat (limited to 'src/world.h')
-rw-r--r-- | src/world.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/world.h b/src/world.h index ab7aad80..99f0c92d 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 { SerdErrorFunc error_func; void* error_handle; + uint32_t next_blank_id; + SerdNode* blank_node; }; /// Open a file configured for fast sequential reading |