corewlan 0.2.0

Safe Rust bindings for Apple's CoreWLAN framework — inspect Wi-Fi interfaces, mutable configurations, event delegates, and preferred network state on macOS
Documentation
1
2
3
4
5
6
7
8
use super::Object;

extern "C" {
    pub fn cwrs_channel_number(channel: Object) -> isize;
    pub fn cwrs_channel_width(channel: Object) -> isize;
    pub fn cwrs_channel_band(channel: Object) -> isize;
    pub fn cwrs_channel_equal(lhs: Object, rhs: Object) -> bool;
}