notify_cb_t

The function that is executed to notify that a change was detected for the given entry.

Synopsis:

#include <ids.h>
 
typedef void(* notify_cb_t)(int type, const char *name, int notification, void *cb_data);

Arguments:

type

The type of entry, and is the same as the value used when registering the notifier.

notification

Indicates the kind of change that occurred; see your identity provider's documentation for the values it returns.

name

The name of the entry, which is the same as the value that was used when registering the notifier.

cb_data

The cb_data pointer that was passed in during the registration.

Since:

BlackBerry 10.2.0

Library:

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

Description: