network-framework-sys 0.1.0

Network.framework bindings for macOS and iOS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::*;

use libc::c_void;


pub enum nw_object {}
pub type nw_object_t = *mut nw_object;


extern "C" {
    pub fn nw_retain(obj: *mut c_void) -> *mut c_void;
    pub fn nw_release(obj: *mut c_void);
}