Overview | ||||||||||||||||
Group | ||||||||||||||||
Quick Info
|
RegNotifyChangeKeyValue
The RegNotifyChangeKeyValue function notifies the caller about changes to the attributes or contents of a specified registry key. Note that the function does not notify the caller if the specified key is deleted. LONG RegNotifyChangeKeyValue( HKEY hKey,
| // handle of key to watch
|
BOOL bWatchSubtree,
| // flag for subkey notification
|
DWORD dwNotifyFilter,
| // changes to be reported
|
HANDLE hEvent,
| // handle of signaled event
|
BOOL fAsynchronous
| // flag for asynchronous reporting
|
);
|
|
HKEY_CURRENT_USER
HKEY_LOCAL_MACHINE
HKEY_USERS bWatchSubtree Specifies a flag that indicates whether to report changes in the specified key and all of its subkeys or only in the specified key. If this parameter is TRUE, the function reports changes in the key and its subkeys. If the parameter is FALSE, the function reports changes only in the key. dwNotifyFilter Specifies a set of flags that control which changes should be reported. This parameter can be a combination of the following values:
Value
| Meaning
|
REG_NOTIFY_CHANGE_NAME
| Notify the caller if a subkey is added or deleted.
|
REG_NOTIFY_CHANGE_ATTRIBUTES
| Notify the caller of changes to the attributes of the key, such as the
security descriptor information.
|
REG_NOTIFY_CHANGE_LAST_SET
| Notify the caller of changes to a value of the key. This can include adding or
deleting a value, or changing an existing value.
|
REG_NOTIFY_CHANGE_SECURITY
| Notify the caller of changes to the security descriptor of the key.
|
- Software for developers
-
Delphi Components
.Net Components
Software for Android Developers - More information resources
-
MegaDetailed.Net
Unix Manual Pages
Delphi Examples - Databases for Amazon shops developers
-
Amazon Categories Database
Browse Nodes Database