alhc 0.2.2

Async Lightweight HTTP Client: A async http client library that using system library to reduce binary size if possible. (Currently under heavy development)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::cf_network::CFDictionaryRef;

// SCDynamicStoreCopyProxies
#[repr(C)]
pub struct SCDynamicStore(::core::ffi::c_void);

pub type SCDynamicStoreRef = *mut SCDynamicStore;

#[link(name = "SystemConfiguration", kind = "framework")]
extern "C" {
    // CFDictionaryRef SCDynamicStoreCopyProxies(SCDynamicStoreRef store);
    pub fn SCDynamicStoreCopyProxies(store: SCDynamicStoreRef) -> CFDictionaryRef;
}