mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2025-12-31 02:23:50 +00:00
17 lines
241 B
C++
17 lines
241 B
C++
//
|
|
// Created by loki on 6/20/19.
|
|
//
|
|
|
|
#ifndef SUNSHINE_INPUT_H
|
|
#define SUNSHINE_INPUT_H
|
|
|
|
#include "platform/common.h"
|
|
|
|
namespace input {
|
|
void print(void *input);
|
|
|
|
void passthrough(platf::input_t &, void *input);
|
|
}
|
|
|
|
#endif //SUNSHINE_INPUT_H
|