10 lines
221 B
Rust
10 lines
221 B
Rust
|
|
use std::ffi::{CStr, CString};
|
||
|
|
use std::os::raw::{c_float, c_void};
|
||
|
|
//use std::ptr;
|
||
|
|
|
||
|
|
#[link(name = "BMap", kind = "dylib")]
|
||
|
|
unsafe extern "C" {
|
||
|
|
pub unsafe fn BMInit() -> bool;
|
||
|
|
pub unsafe fn BMDispose() -> bool;
|
||
|
|
}
|