Sunshine/sunshine/stream.h
2019-12-15 23:10:44 +01:00

24 lines
356 B
C++

//
// 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_session_t> launch_event;
void rtpThread();
}
#endif //SUNSHINE_STREAM_H