mediaplayer 0.4.0

Safe Rust bindings for MediaPlayer.framework on macOS — now playing, remote commands, artwork, and explicit iOS-only stubs
Documentation
1
2
3
4
5
6
7
8
#![allow(missing_docs)]

use core::ffi::{c_char, c_void};

extern "C" {
    pub fn mp_string_free(s: *mut c_char);
    pub fn mp_object_retain(ptr: *mut c_void) -> *mut c_void;
}