From 136805bc6a2377a3e8b6ae33ac8f2099bd36502f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 27 Jun 2003 02:24:02 +0000 Subject: [PATCH] The C++ "C" export now contains the send_notification() and notify_listener() prototypes. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3672 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/drivers/fs_interface.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/headers/os/drivers/fs_interface.h b/headers/os/drivers/fs_interface.h index 099ba9e9a1..cbf23233d5 100644 --- a/headers/os/drivers/fs_interface.h +++ b/headers/os/drivers/fs_interface.h @@ -135,9 +135,6 @@ typedef struct fs_ops { status_t (*rewind_query)(fs_volume fs, fs_cookie cookie); } fs_ops; -#ifdef __cplusplus -} -#endif /* variables exported by the file system add-on */ extern fs_ops fs_entry; @@ -150,4 +147,8 @@ 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); +#ifdef __cplusplus +} +#endif + #endif /* _FS_INTERFACE_H */