0
0
mirror of https://github.com/ventoy/Ventoy.git synced 2024-11-28 04:14:42 +00:00
Ventoy/LinuxGUI/Ventoy2Disk/Lib/fat_io_lib/fat_cache.h
2021-02-27 17:57:41 +08:00

14 lines
526 B
C

#ifndef __FAT_CACHE_H__
#define __FAT_CACHE_H__
#include "fat_filelib.h"
//-----------------------------------------------------------------------------
// Prototypes
//-----------------------------------------------------------------------------
int fatfs_cache_init(struct fatfs *fs, FL_FILE *file);
int fatfs_cache_get_next_cluster(struct fatfs *fs, FL_FILE *file, uint32 clusterIdx, uint32 *pNextCluster);
int fatfs_cache_set_next_cluster(struct fatfs *fs, FL_FILE *file, uint32 clusterIdx, uint32 nextCluster);
#endif