1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#![cfg(windows)]
#![allow(bad_style)]

extern crate winapi;

#[macro_use]
mod macros;

pub mod shared {
    pub mod bthdef;
    pub mod bthioctl;
    pub mod bthsdpdef;
}

pub mod um {
    pub mod bluetoothapis;
    pub mod bluetoothleapis;
    pub mod bthledef;
    pub mod ws2bth;
}