Made C++ safe.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5075 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2003-10-17 14:42:45 +00:00
parent bd77051dc3
commit 50ba16fccf
4 changed files with 36 additions and 2 deletions
+8
View File
@@ -11,6 +11,10 @@
struct io_context;
#ifdef __cplusplus
extern "C" {
#endif
// private kernel API
extern status_t remove_node_monitors(struct io_context *context);
extern status_t node_monitor_init(void);
@@ -22,4 +26,8 @@ extern status_t user_start_watching(dev_t device, ino_t node, uint32 flags,
extern status_t user_stop_watching(dev_t device, ino_t node, uint32 flags,
port_id port, uint32 token);
#ifdef __cplusplus
}
#endif
#endif /* _KRENEL_NODE_MONITOR_H */