Retrieve the list of local services.
#include <btapi/btdevice.h>
char** bt_ldev_get_services()
BlackBerry 10.3.0
Retrieves an array of services that we support. The following example shows you how to retrieve a list of local services:
char **services_array; if( ( services_array = bt_ldev_get_services() ) != NULL) { //work with the services listing bt_ldev_free_services( services_array ); }