Skip to content

Commit c1ab6ef

Browse files
committed
Export the new modules
1 parent 99556b6 commit c1ab6ef

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

system-configuration-sys/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ license = "MIT/Apache-2.0"
1010

1111
[dependencies]
1212
core-foundation-sys = "0.5"
13+
libc = "0.2"

system-configuration-sys/src/lib.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
#![allow(non_upper_case_globals)]
1717
#![allow(non_snake_case)]
1818

19-
extern crate core_foundation_sys;
19+
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;
2024

2125
pub mod dynamic_store;
26+
pub mod network_configuration;
27+
pub mod preferences;

0 commit comments

Comments
 (0)