Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

subtree-serialize.h 305B

12345678910
  1. #pragma once
  2. #include <cstddef>
  3. namespace rtosc{struct Ports; struct RtData;}
  4. size_t subtree_serialize(char *buffer, size_t buffer_size,
  5. void *object, rtosc::Ports *ports);
  6. void subtree_deserialize(char *buffer, size_t buffer_size,
  7. void *object, rtosc::Ports *ports, rtosc::RtData &d);