list_cb_t

The success callback function for ids_list_data()

Synopsis:

#include <ids.h>
 
typedef void(* list_cb_t)(ids_request_id_t request_id, int list_count, const char **list, void *cb_data);

Arguments:

request_id

The request id that matches the one returned during the request.

list_count

The number of items in the list pointed to by list.

list

A pointer to the list of string items.

cb_data

The cb_data pointer passed during the request.

Since:

BlackBerry 10.2.0

Library:

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

Description:

The success callback function for ids_list_data().