Files
mop3/kernel/fs/fatfs.h
kamkow1 7091b128df
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 35s
Build documentation / build-and-deploy (push) Successful in 29s
Implement volume unmounting, collecting VFS volume info, usb Add eject command
2026-04-07 21:17:49 +02:00

37 lines
715 B
C

#ifndef _KERNEL_FS_FATFS_H
#define _KERNEL_FS_FATFS_H
#include <desc.h>
#include <device/device.h>
#include <dir_entry.h>
#include <fs/def_vfs_op.h>
#include <libk/std.h>
#include <proc/proc.h>
#include <proc/reschedule.h>
struct vfs_volume;
DEFINE_VFS_MOUNT (fatfs_mount);
DEFINE_VFS_UNMOUNT (fatfs_unmount);
DEFINE_VFS_FORMAT (fatfs16_format);
DEFINE_VFS_FORMAT (fatfs32_format);
DEFINE_VFS_DESCRIBE (fatfs_describe);
DEFINE_VFS_READ_FILE (fatfs_read_file);
DEFINE_VFS_WRITE_FILE (fatfs_write_file);
DEFINE_VFS_READ_DIR_ENTRY (fatfs_read_dir_entry);
DEFINE_VFS_CREATE_FILE (fatfs_create_file);
DEFINE_VFS_CREATE_DIR (fatfs_create_dir);
DEFINE_VFS_REMOVE (fatfs_remove);
#endif // _KERNEL_FS_FATFS_H