1 /* 2 * Copyright 2011, Oliver Tappe <zooey@hirschkaefer.de> 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef KERNEL_INTERFACE_H 6 #define KERNEL_INTERFACE_H 7 8 9 #include <fs_interface.h> 10 11 12 extern fs_volume_ops gBindFSVolumeOps; 13 extern fs_vnode_ops gBindFSVnodeOps; 14 15 16 #endif // KERNEL_INTERFACE_H 17