Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
virtual P6R::P6ERR P6R::p6IWConfig::unregisterForNotify ( P6CONFIG_NOTIFY_CODES  regFor,
CONFIG_NOTIFY_CHANGE  pFn 
)
pure virtual

This function removes a specific notification request made by a call to registerForNotify.

Each event code (i.e., the value in regFor) and call back pointer (e.g., value in pFn) pair is independent and both values must be passed in to remove a previous request. That is both compose the key.

Parameters
regFor[ in ] The event in the p6IWConfig object that the caller wants to be notified about.
pFn[ in ] Pointer to call back function that is called when "regFor" event occurs.
Returns
SuccessP6R::eOk 
FailureP6R::eNotInitializedA successful call to initialize was not made before this call.
P6R::eInvalidArgParameter pFn is NULL.