Added parameters to notify_{stat,attribute}_change() that will give more information on what actually happened.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11218 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2005-02-02 15:17:54 +00:00
parent 13bbbbf5dc
commit 98f9f2bf07
1 changed files with 3 additions and 2 deletions

View File

@ -174,9 +174,10 @@ extern status_t notify_entry_removed(mount_id device, vnode_id directory,
extern status_t notify_entry_moved(mount_id device, vnode_id fromDirectory, extern status_t notify_entry_moved(mount_id device, vnode_id fromDirectory,
const char *fromName, vnode_id toDirectory, const char *fromName, vnode_id toDirectory,
const char *toName, vnode_id node); const char *toName, vnode_id node);
extern status_t notify_stat_changed(mount_id device, vnode_id node); extern status_t notify_stat_changed(mount_id device, vnode_id node,
uint32 statFields);
extern status_t notify_attribute_changed(mount_id device, vnode_id node, extern status_t notify_attribute_changed(mount_id device, vnode_id node,
const char *attribute); const char *attribute, int32 cause);
extern status_t notify_query_entry_created(port_id port, int32 token, extern status_t notify_query_entry_created(port_id port, int32 token,
mount_id device, vnode_id directory, const char *name, mount_id device, vnode_id directory, const char *name,