mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 11:10:04 +00:00
17 lines
264 B
C
17 lines
264 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::display_t::element_type *display, void *input);
|
||
|
}
|
||
|
|
||
|
#endif //SUNSHINE_INPUT_H
|