diff options
author | David Robillard <d@drobilla.net> | 2024-11-16 13:16:33 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-11-24 19:02:18 -0500 |
commit | ae75e363101a249d4da94ab4ca525d32a325a030 (patch) | |
tree | 54770d731633f91b4d92face31066718a8e38ebf /src/nodes.h | |
parent | 5881e8438197b71f88f9c9d80cc9b0067f1fee58 (diff) | |
download | jalv-ae75e363101a249d4da94ab4ca525d32a325a030.tar.gz jalv-ae75e363101a249d4da94ab4ca525d32a325a030.tar.bz2 jalv-ae75e363101a249d4da94ab4ca525d32a325a030.zip |
Move URID and node initialization to a separate file
Diffstat (limited to 'src/nodes.h')
-rw-r--r-- | src/nodes.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nodes.h b/src/nodes.h index 4b9b25f..ee9a1a2 100644 --- a/src/nodes.h +++ b/src/nodes.h @@ -53,6 +53,9 @@ typedef struct { LilvNode* end; ///< NULL terminator for easy freeing of entire structure } JalvNodes; +void +jalv_init_nodes(LilvWorld* world, JalvNodes* nodes); + JALV_END_DECLS #endif // JALV_NODES_H |