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
9
10
use super::Object;

extern "C" {
    pub fn cwrs_network_profile_new() -> Object;
    pub fn cwrs_network_profile_with_network_profile(profile: Object) -> Object;
    pub fn cwrs_network_profile_ssid(profile: Object) -> Object;
    pub fn cwrs_network_profile_ssid_data(profile: Object) -> Object;
    pub fn cwrs_network_profile_security(profile: Object) -> isize;
    pub fn cwrs_network_profile_equal(lhs: Object, rhs: Object) -> bool;
}