mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 11:10:04 +00:00
22 lines
320 B
C++
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
|