#ifndef MAIN_DISPATCHER_H #define MAIN_DISPATCHER_H #include #include "red_channel.h" void main_dispatcher_channel_event(int event, SpiceChannelEventInfo *info); void main_dispatcher_seamless_migrate_dst_complete(RedClient *client); void main_dispatcher_set_mm_time_latency(RedClient *client, uint32_t latency); /* * Disconnecting the client is always executed asynchronously, * in order to protect from expired references in the routines * that triggered the client destruction. */ void main_dispatcher_client_disconnect(RedClient *client); void main_dispatcher_init(SpiceCoreInterface *core); #endif //MAIN_DISPATCHER_H