feat: Add avs_fs_umount()

> only added for avs 2.17.3.0
> change `avs_fs_mount()` return type to avs_file_t (should be avs_handle_t to begin with)
> related to #1
This commit is contained in:
[ ]
2025-05-26 20:26:00 +09:00
parent 74ef5237ad
commit a34014876a
4 changed files with 16 additions and 6 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ static avs::core::avs_file_t avs_fs_opendir(const char *path) {
return value;
}
static int avs_fs_mount(const char *mountpoint, const char *fsroot, const char *fstype, void *data) {
static avs::core::avs_file_t avs_fs_mount(const char *mountpoint, const char *fsroot, const char *fstype, void *data) {
// avs redirection breaks ongaku paradise
if (mountpoint == nullptr ||
fsroot == nullptr ||