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.

13 lines
347B

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