mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-03 03:19:27 +08:00
3b9c62b05d
# Conflicts: # .github/workflows/ci.yml # Cargo.lock # Cargo.toml # flutter/lib/common.dart # flutter/lib/mobile/pages/remote_page.dart # flutter/lib/mobile/pages/server_page.dart # flutter/lib/mobile/pages/settings_page.dart # flutter/lib/mobile/widgets/dialog.dart # flutter/lib/models/model.dart # flutter/lib/models/server_model.dart # src/client.rs # src/common.rs # src/ipc.rs # src/mobile_ffi.rs # src/rendezvous_mediator.rs # src/ui.rs
57 lines
1.5 KiB
Rust
57 lines
1.5 KiB
Rust
#[cfg(not(any(target_os = "ios")))]
|
|
/// cbindgen:ignore
|
|
pub mod platform;
|
|
#[cfg(not(any(target_os = "android", target_os = "ios")))]
|
|
pub use platform::{get_cursor, get_cursor_data, get_cursor_pos, start_os_service};
|
|
#[cfg(not(any(target_os = "ios")))]
|
|
/// cbindgen:ignore
|
|
mod server;
|
|
#[cfg(not(any(target_os = "ios")))]
|
|
pub use self::server::*;
|
|
mod client;
|
|
#[cfg(not(any(target_os = "ios")))]
|
|
mod rendezvous_mediator;
|
|
#[cfg(not(any(target_os = "ios")))]
|
|
mod lan;
|
|
#[cfg(not(any(target_os = "ios")))]
|
|
pub use self::rendezvous_mediator::*;
|
|
/// cbindgen:ignore
|
|
pub mod common;
|
|
#[cfg(not(any(target_os = "ios")))]
|
|
pub mod ipc;
|
|
#[cfg(not(any(target_os = "android", target_os = "ios", feature = "cli")))]
|
|
pub mod ui;
|
|
mod version;
|
|
pub use version::*;
|
|
#[cfg(any(target_os = "android", target_os = "ios", feature = "flutter"))]
|
|
mod bridge_generated;
|
|
#[cfg(any(target_os = "android", target_os = "ios", feature = "flutter"))]
|
|
pub mod flutter;
|
|
#[cfg(any(target_os = "android", target_os = "ios", feature = "flutter"))]
|
|
pub mod flutter_ffi;
|
|
use common::*;
|
|
#[cfg(all(
|
|
not(any(target_os = "android", target_os = "ios")),
|
|
feature = "flutter"
|
|
))]
|
|
pub mod core_main;
|
|
#[cfg(feature = "cli")]
|
|
pub mod cli;
|
|
#[cfg(all(windows, feature = "hbbs"))]
|
|
mod hbbs;
|
|
mod lang;
|
|
#[cfg(windows)]
|
|
mod license;
|
|
#[cfg(not(any(target_os = "android", target_os = "ios")))]
|
|
mod port_forward;
|
|
#[cfg(windows)]
|
|
mod tray;
|
|
|
|
mod ui_interface;
|
|
|
|
#[cfg(windows)]
|
|
pub mod clipboard_file;
|
|
|
|
#[cfg(all(windows, feature = "with_rc"))]
|
|
pub mod rc;
|