apple-bindgen 0.3.0

bindgen helper for Apple frameworks
Documentation
1
2
3
4
5
6
7
8
9
use crate::Builder;

#[test]
fn generate_core_foundation() {
    Builder::with_builtin_config("CoreFoundation", "macosx")
        .expect("macosx sdk not found")
        .generate()
        .expect("generate failed");
}