macstate-sys 0.0.3

Hand-written macOS FFI (CoreFoundation, IOKit, Network.framework) used by macstate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Raw macOS FFI used by `macstate-core`.
//!
//! Hand-written, intentionally tiny: only the symbols `macstate-core`
//! actually consumes. Lets downstream consumers (e.g. Tauri apps) avoid
//! pulling in the full objc2 framework crate set.

#![cfg(target_os = "macos")]
#![allow(non_upper_case_globals, non_snake_case)]

pub mod cf;
pub mod dispatch;
pub mod iokit;
pub mod nwpath;
pub mod objc;