lsl_append_child_value function

  1. @Native<NativeLsl_append_child_value>()
lsl_xml_ptr lsl_append_child_value(
  1. lsl_xml_ptr e,
  2. Pointer<Char> name,
  3. Pointer<Char> value
)

Append a child node with a given name, which has a (nameless) plain-text child with the given text value.

Implementation

@ffi.Native<NativeLsl_append_child_value>()
external lsl_xml_ptr lsl_append_child_value(
  lsl_xml_ptr e,
  ffi.Pointer<ffi.Char> name,
  ffi.Pointer<ffi.Char> value,
);