We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99556b6 commit c1ab6efCopy full SHA for c1ab6ef
system-configuration-sys/Cargo.toml
@@ -10,3 +10,4 @@ license = "MIT/Apache-2.0"
10
11
[dependencies]
12
core-foundation-sys = "0.5"
13
+libc = "0.2"
system-configuration-sys/src/lib.rs
@@ -16,6 +16,12 @@
16
#![allow(non_upper_case_globals)]
17
#![allow(non_snake_case)]
18
19
-extern crate core_foundation_sys;
+pub extern crate core_foundation_sys;
20
+pub extern crate libc;
21
+
22
+/// This is a temporary solution.
23
+pub type dispatch_queue_t = *mut ::std::os::raw::c_void;
24
25
pub mod dynamic_store;
26
+pub mod network_configuration;
27
+pub mod preferences;
0 commit comments