From 2059f68a2b346477335c3962bfb217f81d1a92fc Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 10 Oct 2011 04:26:48 +0000 Subject: Remove useless struct names. --- ext/atom.lv2/atom.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ext/atom.lv2/atom.h b/ext/atom.lv2/atom.h index 1f8c6ac..bebe477 100644 --- a/ext/atom.lv2/atom.h +++ b/ext/atom.lv2/atom.h @@ -55,7 +55,7 @@ type. The macro LV2_ATOM_FROM_EVENT is provided in this header for this purpose. */ -typedef struct _LV2_Atom { +typedef struct { /** The type of this atom. @@ -82,7 +82,7 @@ typedef struct _LV2_Atom { /** The body of an atom:Literal. */ -typedef struct _LV2_Atom_Literal { +typedef struct { uint32_t datatype; /**< The ID of the datatype of this literal */ uint32_t lang; /**< The ID of the language of this literal */ uint8_t str[]; /**< Null-terminated string data in UTF-8 encoding */ @@ -91,7 +91,7 @@ typedef struct _LV2_Atom_Literal { /** The body of an atom:Vector. */ -typedef struct _LV2_Atom_Vector { +typedef struct { uint16_t elem_count; /**< The number of elements in the vector */ uint16_t elem_type; /**< The type of each element in the vector */ uint8_t elems[]; /**< Sequence of element bodies */ @@ -108,7 +108,7 @@ typedef struct _LV2_Atom_Property { /** The body of an atom:Resource or atom:Blank. */ -typedef struct _LV2_Object { +typedef struct { uint32_t context; /**< ID of context graph, or 0 for default */ uint32_t id; /**< URID (for Resource) or blank ID (for Blank) */ uint8_t properties[]; /**< Sequence of LV2_Atom_Property */ @@ -164,7 +164,7 @@ typedef struct { |FRAMES |SUBFRMS|TYPE |SIZE |DATADATADATAPAD|FRAMES |SUBFRMS|... */ -typedef struct _LV2_Atom_Event_Buffer { +typedef struct { /** The contents of the event buffer. This may or may not reside in the -- cgit v1.2.1