aboutsummaryrefslogtreecommitdiffstats
path: root/ext/atom.lv2/forge.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-09 02:14:18 +0000
committerDavid Robillard <d@drobilla.net>2011-11-09 02:14:18 +0000
commitea8e4e2982328a1941bbe6bbdc96f954598a1174 (patch)
tree5a645bcc97b6c3f0cc502fff3c1cdff2c9305a1d /ext/atom.lv2/forge.h
parentc43aed97c6b874a80fd5a9f759e651953bcec1f9 (diff)
downloadlv2-ea8e4e2982328a1941bbe6bbdc96f954598a1174.tar.xz
Rename Object to Thing.
Add definition of Message.
Diffstat (limited to 'ext/atom.lv2/forge.h')
-rw-r--r--ext/atom.lv2/forge.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/atom.lv2/forge.h b/ext/atom.lv2/forge.h
index f1ffb03..b42b384 100644
--- a/ext/atom.lv2/forge.h
+++ b/ext/atom.lv2/forge.h
@@ -59,11 +59,11 @@ lv2_atom_forge_make_id(LV2_Atom_Forge* forge, uint32_t id)
static inline void
lv2_atom_forge_set_message(LV2_Atom_Forge* forge,
- LV2_Object* msg,
+ LV2_Thing* msg,
uint32_t id)
{
msg->type = forge->Message;
- msg->size = sizeof(LV2_Object) - sizeof(LV2_Atom);
+ msg->size = sizeof(LV2_Thing) - sizeof(LV2_Atom);
msg->context = 0;
msg->id = id;
}