// // Created by loki on 6/5/19. // #ifndef SUNSHINE_STREAM_H #define SUNSHINE_STREAM_H #include "crypto.h" #include "thread_safe.h" namespace stream { struct launch_session_t { crypto::aes_t gcm_key; crypto::aes_t iv; std::string app_name; }; extern safe::event_t launch_event; void rtpThread(); } #endif //SUNSHINE_STREAM_H