Sunshine/sunshine/input.h
2020-03-15 21:22:42 +01:00

22 lines
320 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 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