1 /* 2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef USERLAND_FS_BEOS_KERNEL_EMU_H 6 #define USERLAND_FS_BEOS_KERNEL_EMU_H 7 8 #include "FSCapabilities.h" 9 10 11 // Implemented in BeOSKernelFileSystem. We can't use BeOSKernelFileSystem 12 // directly in beos_kernel_emu.cpp, since BeOS and Haiku headers would clash. 13 void get_beos_file_system_node_capabilities(FSVNodeCapabilities& capabilities); 14 15 16 #endif // USERLAND_FS_BEOS_KERNEL_EMU_H 17