#[no_mangle]
pub unsafe extern "C" fn delete_fullmac_mlme(
    mlme: *mut FullmacMlmeHandle
)
Expand description

FFI interface: Stop and delete a FullMAC MLME via the FullmacMlmeHandle. Takes ownership and invalidates the passed FullmacMlmeHandle.

§Safety

This fn accepts a raw pointer that is held by the FFI caller as a handle to the MLME. This API is fundamentally unsafe, and relies on the caller to pass the correct pointer and make no further calls on it later.