libmpv2-sys 4.0.1

Libmpv bindings generated by bindgen
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

#[inline]
/// Returns the associated error string.
pub fn mpv_error_str(e: mpv_error) -> &'static str {
    let raw = unsafe { mpv_error_string(e) };
    unsafe { ::std::ffi::CStr::from_ptr(raw) }.to_str().unwrap()
}