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
10fssh_status_t
11fssh_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
18fssh_status_t
19fssh_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
26fssh_status_t
27fssh_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
35fssh_status_t
36fssh_notify_stat_changed(fssh_mount_id device, fssh_vnode_id dir,
37	fssh_vnode_id node, uint32_t statFields)
38{
39	return FSSH_B_OK;
40}
41
42
43fssh_status_t
44fssh_notify_attribute_changed(fssh_mount_id device, fssh_vnode_id dir,
45	fssh_vnode_id node, const char *attribute, int32_t cause)
46{
47	return FSSH_B_OK;
48}
49
50
51fssh_status_t
52fssh_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
60fssh_status_t
61fssh_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
68
69fssh_status_t
70fssh_notify_query_attr_changed(fssh_port_id port, int32_t token,
71	fssh_mount_id device, fssh_vnode_id directory, const char *name,
72	fssh_vnode_id node)
73{
74	return FSSH_B_OK;
75}
76