Delete a remote Bluetooth-enabled device.
Synopsis:
#include <btapi/btdevice.h>
int bt_rdev_delete(const bt_remote_device_t *remote_device)
Arguments:
- remote_device
-
A pointer to a remote device structure.
Library:
libbtapi (For the qcc command, use the -l btapi option to link against this library)
Description:
This function removes the pairing information of a remote device, essentially deleting it from the list of paired devices.
Returns:
0 is returned upon successful deletion,
-1 with the
errno set otherwise. Any
errno value other than the following indicates that a system error has occurred:
- EINVAL: An invalid value was passed in for remote_device.
- ENOMEM: There was insufficient memory to allocate required structures.
- ENOENT: A required data entry was not found (internal error).
- EPERM: There was an error accessing required system data (internal error).