diff options
author | David Robillard <d@drobilla.net> | 2012-04-12 00:58:40 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-12 00:58:40 +0000 |
commit | cb1eb8a0ac422f64f7be787826f6ab37343de850 (patch) | |
tree | c21bc1a74e1e22f763a989cdb4595e83f433aba4 | |
parent | e5b51f9d6ee2ea11524d391f0d7e9fbead614b9e (diff) | |
download | lv2-cb1eb8a0ac422f64f7be787826f6ab37343de850.tar.xz |
Add Chunk to Forge's set of URIDs for convenience.
-rw-r--r-- | lv2/lv2plug.in/ns/ext/atom/forge.h | 2 | ||||
-rw-r--r-- | wscript | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lv2/lv2plug.in/ns/ext/atom/forge.h b/lv2/lv2plug.in/ns/ext/atom/forge.h index ea5977e..f86d9a8 100644 --- a/lv2/lv2plug.in/ns/ext/atom/forge.h +++ b/lv2/lv2plug.in/ns/ext/atom/forge.h @@ -91,6 +91,7 @@ typedef struct { LV2_URID Blank; LV2_URID Bool; + LV2_URID Chunk; LV2_URID Double; LV2_URID Float; LV2_URID Int; @@ -122,6 +123,7 @@ lv2_atom_forge_init(LV2_Atom_Forge* forge, LV2_URID_Map* map) lv2_atom_forge_set_buffer(forge, NULL, 0); forge->Blank = map->map(map->handle, LV2_ATOM__Blank); forge->Bool = map->map(map->handle, LV2_ATOM__Bool); + forge->Chunk = map->map(map->handle, LV2_ATOM__Chunk); forge->Double = map->map(map->handle, LV2_ATOM__Double); forge->Float = map->map(map->handle, LV2_ATOM__Float); forge->Int = map->map(map->handle, LV2_ATOM__Int); @@ -14,7 +14,7 @@ import waflib.Scripting as Scripting # Variables for 'waf dist' APPNAME = 'lv2' -VERSION = '0.3.0' +VERSION = '0.4.0' # Mandatory variables top = '.' |