bwapi 0.2.0

Rust bindings to the Starcraft Broodwar game API
Documentation
extern crate bwapi_sys;

fn main() {
    unsafe { bwapi_sys::BWAPIC_getClient() };
}

#[cfg(windows)]
#[no_mangle]
pub extern "C" fn _Unwind_Resume() -> ! {
    use std::process;
    process::abort();
}

#[cfg(windows)]
#[no_mangle]
pub extern "C" fn _Unwind_RaiseException() -> ! {
    use std::process;
    process::abort();
}