libffi-sys 2.3.0

Raw Rust bindings for libffi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod common;
#[cfg(target_env = "msvc")]
mod msvc;
#[cfg(not(target_env = "msvc"))]
mod not_msvc;

#[cfg(target_env = "msvc")]
use msvc::*;
#[cfg(not(target_env = "msvc"))]
use not_msvc::*;

fn main() {
    if cfg!(feature = "system") {
        probe_and_link();
    } else {
        build_and_link();
    }
}