The flags for registering/deregistering change notifications of entries within the profile.
enum ids_bbprofile_register_notifier_flag{
IDS_PROFILE_NOTIFIER_START = 0x00000000
IDS_PROFILE_NOTIFIER_STOP = 0x00000001
};
BlackBerry 10.2.0
Notifications can be registered for entries either before or after they have been created. In cases where the registration is done after creation, the application is notified each time the value changes so that it can perform any necessary operations. If registration is done before an entry is created, the application is notified upon creation of the value as if it were an update. Additionally, registered applications receive a change notification when an entry is deleted. Multiple flags can be combined using bitwise 'OR' unless stated otherwise. See the flags parameter for the ids_register_notifier() function for more information.