bt_gatt_included_services_cb

The callback prototype to indicate that bt_gatt_included_service_async has completed.

Synopsis:

#include <btapi/btgatt.h>
 
typedef void(* bt_gatt_included_services_cb)(int instance, bt_gatt_included_service_t *services, uint16_t size, bt_gatt_att_error_t error, void *user_data);

Arguments:

instance

The identifier used to reference the service.

services

An array of included services when operation completes successfully.

size

The size of the included services array. The size indicates the number of structures in the array and not the memory size required for the structures.

error

The ATT result of the operation.

user_data

The pointer to be returned when the callback is executed.

Since:

BlackBerry 10.3.0

Library:

libbtapi (For the qcc command, use the -l btapi option to link against this library)

Description: