corewlan-sys 0.1.1

FFI Bindings to MacOS's CoreWLAN framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![macro_use]
extern crate objc;

/// Raw interfaces
pub(crate) mod raw;
// High level interfaces
mod hli;
pub use hli::*;

/// [hli] tests
#[cfg(test)]
mod tests;