Files
mop3/kernel/fs/fatfs/fatfs_ctx.h
kamkow1 24332da967
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 38s
Build documentation / build-and-deploy (push) Successful in 24s
Move filesystem drivers into their separate directories
2026-04-18 18:49:13 +02:00

20 lines
396 B
C

#ifndef _KERNEL_FS_FATFS_CTX_H
#define _KERNEL_FS_FATFS_CTX_H
struct proc;
struct reschedule_ctx;
struct fatfs_ctx {
FL_FILE _files[FATFS_MAX_OPEN_FILES];
int _filelib_init;
int _filelib_valid;
struct fatfs _fs;
struct fat_list _open_file_list;
struct fat_list _free_file_list;
void* udata;
struct proc* proc;
struct reschedule_ctx* rctx;
};
#endif // _KERNEL_FS_FATFS_CTX_H