aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in/ns/ext/atom/atom.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-02-23 20:07:29 +0000
committerDavid Robillard <d@drobilla.net>2012-02-23 20:07:29 +0000
commit29a62871a901a07faa7fb66f26d2d60c9273257b (patch)
tree16632ffa829a6cc385dd5bad7b5a6c6fec0c6a95 /lv2/lv2plug.in/ns/ext/atom/atom.h
parentc2cc2607f8d5b9eea933a18abd91b2ce708fc90c (diff)
downloadlv2-29a62871a901a07faa7fb66f26d2d60c9273257b.tar.xz
Put atom size first.
Fix doxygen stylesheet.
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/atom/atom.h')
-rw-r--r--lv2/lv2plug.in/ns/ext/atom/atom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lv2/lv2plug.in/ns/ext/atom/atom.h b/lv2/lv2plug.in/ns/ext/atom/atom.h
index 6f104e2..9bce7ce 100644
--- a/lv2/lv2plug.in/ns/ext/atom/atom.h
+++ b/lv2/lv2plug.in/ns/ext/atom/atom.h
@@ -87,8 +87,8 @@ typedef char lv2_atom_assert_double_fits_in_64_bits[
/** The header of an atom:Atom. */
typedef struct {
- uint32_t type; /**< Type of this atom (mapped URI). */
uint32_t size; /**< Size in bytes, not including type and size. */
+ uint32_t type; /**< Type of this atom (mapped URI). */
} LV2_Atom;
/** An atom:Int32 or atom:Bool. May be cast to LV2_Atom. */