1 /* 2 * Copyright 2024, Haiku, Inc. All rights reserved. 3 * Distributed under the terms of the MIT license. 4 */ 5 6 #include <vfs.h> 7 8 9 extern "C" status_t 10 vfs_stat_node_ref(dev_t device, ino_t inode, struct stat *stat) 11 { 12 return B_NOT_SUPPORTED; 13 } 14 15 16 extern "C" status_t 17 vfs_normalize_path(const char* path, char* buffer, size_t bufferSize, 18 bool traverseLink, bool kernel) 19 { 20 return B_NOT_SUPPORTED; 21 } 22 23 24 extern "C" status_t 25 vfs_entry_ref_to_path(dev_t device, ino_t inode, const char *leaf, 26 bool kernel, char *path, size_t pathLength) 27 { 28 return B_NOT_SUPPORTED; 29 } 30 31 32 extern "C" status_t 33 vfs_unmount(dev_t mountID, uint32 flags) 34 { 35 return B_NOT_SUPPORTED; 36 } 37