Advertisement
Guest User

Untitled

a guest
Sep 20th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. drobilla@leibniz ~/src/lv2/build/doc/xml
  2. $ ./test.py group__atom.xml
  3. struct LV2_Atom
  4. The header of an atom:Atom.
  5. uint32_t size Size in bytes, not including type and size.
  6. uint32_t type Type of this atom (mapped URI).
  7. struct LV2_Atom_Int
  8. An atom:Int or atom:Bool.
  9. LV2_Atom atom Atom header.
  10. int32_t body Integer value.
  11. struct LV2_Atom_Long
  12. An atom:Long.
  13. LV2_Atom atom Atom header.
  14. int64_t body Integer value.
  15. struct LV2_Atom_Float
  16. An atom:Float.
  17. LV2_Atom atom Atom header.
  18. float body Floating point value.
  19. struct LV2_Atom_Double
  20. An atom:Double.
  21. LV2_Atom atom Atom header.
  22. double body Floating point value.
  23. struct LV2_Atom_URID
  24. An atom:URID.
  25. LV2_Atom atom Atom header.
  26. uint32_t body URID.
  27. struct LV2_Atom_String
  28. An atom:String.
  29. LV2_Atom atom Atom header.
  30. struct LV2_Atom_Literal_Body
  31. The body of an atom:Literal.
  32. uint32_t datatype Datatype URID.
  33. uint32_t lang Language URID.
  34. struct LV2_Atom_Literal
  35. An atom:Literal.
  36. LV2_Atom atom Atom header.
  37. LV2_Atom_Literal_Body body Body.
  38. struct LV2_Atom_Tuple
  39. An atom:Tuple.
  40. LV2_Atom atom Atom header.
  41. struct LV2_Atom_Vector_Body
  42. The body of an atom:Vector.
  43. uint32_t child_size The size of each element in the vector.
  44. uint32_t child_type The type of each element in the vector.
  45. struct LV2_Atom_Vector
  46. An atom:Vector.
  47. LV2_Atom atom Atom header.
  48. LV2_Atom_Vector_Body body Body.
  49. struct LV2_Atom_Property_Body
  50. The body of an atom:Property (e.g.
  51. uint32_t key Key (predicate) (mapped URI).
  52. uint32_t context Context URID (may be, and generally is, 0).
  53. LV2_Atom value Value atom header.
  54. struct LV2_Atom_Property
  55. An atom:Property.
  56. LV2_Atom atom Atom header.
  57. LV2_Atom_Property_Body body Body.
  58. struct LV2_Atom_Object_Body
  59. The body of an atom:Object.
  60. uint32_t id URID, or 0 for blank.
  61. uint32_t otype Type URID (same as rdf:type, for fast dispatch).
  62. struct LV2_Atom_Object
  63. An atom:Object.
  64. LV2_Atom atom Atom header.
  65. LV2_Atom_Object_Body body Body.
  66. struct LV2_Atom_Event
  67. The header of an atom:Event.
  68. union LV2_Atom_Event::@0 time Time stamp.
  69. LV2_Atom body Event body atom header.
  70. struct LV2_Atom_Sequence_Body
  71. The body of an atom:Sequence (a sequence of events).
  72. uint32_t unit URID of unit of event time stamps.
  73. uint32_t pad Currently unused.
  74. struct LV2_Atom_Sequence
  75. An atom:Sequence.
  76. LV2_Atom atom Atom header.
  77. LV2_Atom_Sequence_Body body Body.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement