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
//! Interact with Bluetooth devices via RFCOMM channels.
#![deny(missing_docs,
        missing_debug_implementations, missing_copy_implementations,
        trivial_casts, trivial_numeric_casts,
        unstable_features,
        unused_import_braces, unused_qualifications)]

#[allow(unused_imports)] // depending on target, this might be unused
#[macro_use]
extern crate enum_primitive;

extern crate mio;
extern crate nix;
extern crate libc;

mod bluetooth;
pub use 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 linux::*;

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