Sunshine/sunshine/input.h
2021-05-08 13:08:07 +02:00

23 lines
334 B
C++

//
// Created by loki on 6/20/19.
//
#ifndef SUNSHINE_INPUT_H
#define SUNSHINE_INPUT_H
namespace input {
struct input_t;
void print(void *input);
void reset();
void passthrough(std::shared_ptr<input_t> &input, std::vector<std::uint8_t> &&input_data);
void init();
std::shared_ptr<input_t> alloc();
}
#endif //SUNSHINE_INPUT_H