diff options
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/atom/atom.h')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/atom/atom.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lv2/lv2plug.in/ns/ext/atom/atom.h b/lv2/lv2plug.in/ns/ext/atom/atom.h index 5c0b3fd..fd0279c 100644 --- a/lv2/lv2plug.in/ns/ext/atom/atom.h +++ b/lv2/lv2plug.in/ns/ext/atom/atom.h @@ -96,16 +96,11 @@ typedef struct { /* Contents (a null-terminated UTF-8 string) follow here. */ } LV2_Atom_String; -/** The header of an atom:Literal body. */ +/** The complete header of an atom:Literal. */ typedef struct { + LV2_Atom atom; /**< Atom header. */ uint32_t datatype; /**< The ID of the datatype of this literal. */ uint32_t lang; /**< The ID of the language of this literal. */ -} LV2_Atom_Literal_Head; - -/** The complete header of an atom:Literal. */ -typedef struct { - LV2_Atom atom; /**< Atom header. */ - LV2_Atom_Literal_Head literal; /**< Literal body header. */ /* Contents (a null-terminated UTF-8 string) follow here. */ } LV2_Atom_Literal; |