MusicTrackSetProperty

Function MusicTrackSetProperty 

Source
pub unsafe extern "C-unwind" fn MusicTrackSetProperty(
    in_track: MusicTrack,
    in_property_id: u32,
    in_data: NonNull<c_void>,
    in_length: u32,
) -> i32
Available on crate feature MusicPlayer only.
Expand description

Sets the specified property value

Property values are always get and set by reference

Parameter inTrack: the track

Parameter inPropertyID: the property ID

Parameter inData: the new property value

Parameter inLength: the size of the property value being set

ยงSafety

  • in_track must be a valid pointer.
  • in_data must be a valid pointer.