mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-04 03:49:25 +08:00
fix build
Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
parent
75aeb616e4
commit
ab1e7109bb
@ -6,7 +6,7 @@ use crate::{
|
|||||||
common::make_fd_to_json,
|
common::make_fd_to_json,
|
||||||
flutter::{self, SESSIONS},
|
flutter::{self, SESSIONS},
|
||||||
flutter::{session_add, session_start_},
|
flutter::{session_add, session_start_},
|
||||||
server::input_service::{
|
server::{
|
||||||
MOUSE_BUTTON_BACK, MOUSE_BUTTON_FORWARD, MOUSE_BUTTON_LEFT, MOUSE_BUTTON_RIGHT,
|
MOUSE_BUTTON_BACK, MOUSE_BUTTON_FORWARD, MOUSE_BUTTON_LEFT, MOUSE_BUTTON_RIGHT,
|
||||||
MOUSE_BUTTON_WHEEL, MOUSE_TYPE_DOWN, MOUSE_TYPE_TRACKPAD, MOUSE_TYPE_UP, MOUSE_TYPE_WHEEL,
|
MOUSE_BUTTON_WHEEL, MOUSE_TYPE_DOWN, MOUSE_TYPE_TRACKPAD, MOUSE_TYPE_UP, MOUSE_TYPE_WHEEL,
|
||||||
},
|
},
|
||||||
|
@ -74,6 +74,18 @@ lazy_static::lazy_static! {
|
|||||||
pub static ref CLIENT_SERVER: ServerPtr = new();
|
pub static ref CLIENT_SERVER: ServerPtr = new();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub const MOUSE_TYPE_MOVE: i32 = 0;
|
||||||
|
pub const MOUSE_TYPE_DOWN: i32 = 1;
|
||||||
|
pub const MOUSE_TYPE_UP: i32 = 2;
|
||||||
|
pub const MOUSE_TYPE_WHEEL: i32 = 3;
|
||||||
|
pub const MOUSE_TYPE_TRACKPAD: i32 = 4;
|
||||||
|
|
||||||
|
pub const MOUSE_BUTTON_LEFT: i32 = 0x01;
|
||||||
|
pub const MOUSE_BUTTON_RIGHT: i32 = 0x02;
|
||||||
|
pub const MOUSE_BUTTON_WHEEL: i32 = 0x04;
|
||||||
|
pub const MOUSE_BUTTON_BACK: i32 = 0x08;
|
||||||
|
pub const MOUSE_BUTTON_FORWARD: i32 = 0x10;
|
||||||
|
|
||||||
pub struct Server {
|
pub struct Server {
|
||||||
connections: ConnMap,
|
connections: ConnMap,
|
||||||
services: HashMap<&'static str, Box<dyn Service>>,
|
services: HashMap<&'static str, Box<dyn Service>>,
|
||||||
|
@ -22,18 +22,6 @@ use winapi::um::winuser::WHEEL_DELTA;
|
|||||||
|
|
||||||
const INVALID_CURSOR_POS: i32 = i32::MIN;
|
const INVALID_CURSOR_POS: i32 = i32::MIN;
|
||||||
|
|
||||||
pub const MOUSE_TYPE_MOVE: i32 = 0;
|
|
||||||
pub const MOUSE_TYPE_DOWN: i32 = 1;
|
|
||||||
pub const MOUSE_TYPE_UP: i32 = 2;
|
|
||||||
pub const MOUSE_TYPE_WHEEL: i32 = 3;
|
|
||||||
pub const MOUSE_TYPE_TRACKPAD: i32 = 4;
|
|
||||||
|
|
||||||
pub const MOUSE_BUTTON_LEFT: i32 = 0x01;
|
|
||||||
pub const MOUSE_BUTTON_RIGHT: i32 = 0x02;
|
|
||||||
pub const MOUSE_BUTTON_WHEEL: i32 = 0x04;
|
|
||||||
pub const MOUSE_BUTTON_BACK: i32 = 0x08;
|
|
||||||
pub const MOUSE_BUTTON_FORWARD: i32 = 0x10;
|
|
||||||
|
|
||||||
#[derive(Default)]
|
#[derive(Default)]
|
||||||
struct StateCursor {
|
struct StateCursor {
|
||||||
hcursor: u64,
|
hcursor: u64,
|
||||||
|
Loading…
Reference in New Issue
Block a user