mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-08-10 00:52:16 +00:00
21 lines
481 B
C++
21 lines
481 B
C++
/**
|
|
* @file src/platform/linux/input/inputtino_touch.h
|
|
* @brief Declarations for inputtino touch input handling.
|
|
*/
|
|
#pragma once
|
|
|
|
// lib includes
|
|
#include <boost/locale.hpp>
|
|
#include <inputtino/input.hpp>
|
|
#include <libevdev/libevdev.h>
|
|
|
|
// local includes
|
|
#include "inputtino_common.h"
|
|
#include "src/platform/common.h"
|
|
|
|
using namespace std::literals;
|
|
|
|
namespace platf::touch {
|
|
void update(client_input_raw_t *raw, const touch_port_t &touch_port, const touch_input_t &touch);
|
|
}
|