mpv_del_property method

int mpv_del_property(
  1. Pointer<mpv_handle> ctx,
  2. Pointer<Char> name
)

Convenience function to delete a property.

This is equivalent to running the command "del name".

@param name The property name. See input.rst for a list of properties. @return error code

Implementation

int mpv_del_property(
  ffi.Pointer<mpv_handle> ctx,
  ffi.Pointer<ffi.Char> name,
) {
  return _mpv_del_property(
    ctx,
    name,
  );
}