1 2 3 4 5 6 7 8 9 10
/// Import desired modules for target
#[macro_export]
macro_rules! import_ffi {
() => {
#[cfg(not(target_os = "windows"))]
use $crate::unix as ffi;
#[cfg(target_os = "windows")]
use $crate::windows as ffi;
};
}