1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Interact with Bluetooth devices via RFCOMM channels.
#![deny(
    missing_debug_implementations,
    missing_copy_implementations,
    trivial_numeric_casts,
    unstable_features,
    unused_import_braces,
    unused_qualifications
)]

mod bluetooth;
pub use crate::bluetooth::*;

// ////////////////////////////////////
// Linux implementation of functions
#[cfg(target_os = "linux")]
mod linux;

#[cfg(target_os = "windows")]
#[allow(unused_variables)] // TODO: remove warnings
mod windows;

mod platform {

    #[cfg(target_os = "linux")]
    pub use crate::linux::*;

    #[cfg(target_os = "windows")]
    pub use crate::windows::*;
}

/// OS-specific functionality
pub mod os {
    /// Linux-specific definitions
    #[cfg(target_os = "linux")]
    pub mod linux {
        pub use crate::linux::{BtSocket, BtSocketConnect};
    }
}