xref: /haiku/src/add-ons/kernel/file_systems/packagefs/kernel_interface.h (revision b932032a35bf6775e1b37bc3b39a2c9afa8c3ac1)
1*b932032aSIngo Weinhold /*
2*b932032aSIngo Weinhold  * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3*b932032aSIngo Weinhold  * Distributed under the terms of the MIT License.
4*b932032aSIngo Weinhold  */
5*b932032aSIngo Weinhold #ifndef KERNEL_INTERFACE_H
6*b932032aSIngo Weinhold #define KERNEL_INTERFACE_H
7*b932032aSIngo Weinhold 
8*b932032aSIngo Weinhold 
9*b932032aSIngo Weinhold #include <fs_interface.h>
10*b932032aSIngo Weinhold 
11*b932032aSIngo Weinhold 
12*b932032aSIngo Weinhold extern fs_volume_ops gPackageFSVolumeOps;
13*b932032aSIngo Weinhold extern fs_vnode_ops gPackageFSVnodeOps;
14*b932032aSIngo Weinhold 
15*b932032aSIngo Weinhold 
16*b932032aSIngo Weinhold #endif	// KERNEL_INTERFACE_H
17