xref: /haiku/src/tools/fs_shell/node_monitor.cpp (revision bc3955fea5b07e2e94a27fc05e4bb58fe6f0319b)
1 /*
2  * Copyright 2007, Ingo Weinhold, bonefish@cs.tu-berlin.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #include "fssh_errors.h"
7 #include "fssh_fs_interface.h"
8 
9 
10 fssh_status_t
11 fssh_notify_entry_created(fssh_mount_id device, fssh_vnode_id directory,
12 	const char *name, fssh_vnode_id node)
13 {
14 	return FSSH_B_OK;
15 }
16 
17 
18 fssh_status_t
19 fssh_notify_entry_removed(fssh_mount_id device, fssh_vnode_id directory,
20 	const char *name, fssh_vnode_id node)
21 {
22 	return FSSH_B_OK;
23 }
24 
25 
26 fssh_status_t
27 fssh_notify_entry_moved(fssh_mount_id device, fssh_vnode_id fromDirectory,
28 	const char *fromName, fssh_vnode_id toDirectory, const char *toName,
29 	fssh_vnode_id node)
30 {
31 	return FSSH_B_OK;
32 }
33 
34 
35 fssh_status_t
36 fssh_notify_stat_changed(fssh_mount_id device, fssh_vnode_id node,
37 	uint32_t statFields)
38 {
39 	return FSSH_B_OK;
40 }
41 
42 
43 fssh_status_t
44 fssh_notify_attribute_changed(fssh_mount_id device, fssh_vnode_id node,
45 	const char *attribute, int32_t cause)
46 {
47 	return FSSH_B_OK;
48 }
49 
50 
51 fssh_status_t
52 fssh_notify_query_entry_created(fssh_port_id port, int32_t token,
53 	fssh_mount_id device, fssh_vnode_id directory, const char *name,
54 	fssh_vnode_id node)
55 {
56 	return FSSH_B_OK;
57 }
58 
59 
60 fssh_status_t
61 fssh_notify_query_entry_removed(fssh_port_id port, int32_t token,
62 	fssh_mount_id device, fssh_vnode_id directory, const char *name,
63 	fssh_vnode_id node)
64 {
65 	return FSSH_B_OK;
66 }
67