Added some file system private function prototypes (for node monitoring/live queries).

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2480 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-01-18 14:05:58 +00:00
parent f9bdcca59c
commit 6d16fb1d30
1 changed files with 7 additions and 0 deletions

View File

@ -143,4 +143,11 @@ typedef struct fs_ops {
extern fs_ops fs_entry;
extern int32 api_version;
/* file system add-ons only prototypes */
extern status_t notify_listener(int op, mount_id device, vnode_id parentNode,
vnode_id toParentNode, vnode_id node, const char *name);
extern status_t send_notification(port_id port, long token, ulong what, long op,
mount_id device, mount_id toDevice, vnode_id parentNode,
vnode_id toParentNode, vnode_id node, const char *name);
#endif /* _FS_INTERFACE_H */