UbixOS V2  2.0
fat_cache.h
Go to the documentation of this file.
1 #ifndef __FAT_CACHE_H__
2 #define __FAT_CACHE_H__
3 
4 #include "fat_filelib.h"
5 
6 //-----------------------------------------------------------------------------
7 // Prototypes
8 //-----------------------------------------------------------------------------
9 int fatfs_cache_init(struct fatfs *fs, FL_FILE *file);
10 int fatfs_cache_get_next_cluster(struct fatfs *fs, FL_FILE *file, uint32 clusterIdx, uint32 *pNextCluster);
11 int fatfs_cache_set_next_cluster(struct fatfs *fs, FL_FILE *file, uint32 clusterIdx, uint32 nextCluster);
12 
13 #endif
fatfs_cache_init
int fatfs_cache_init(struct fatfs *fs, FL_FILE *file)
Definition: fat_cache.c:42
file
Definition: descrip.h:67
fat_filelib.h
fs
Definition: fs.h:260
fatfs_cache_set_next_cluster
int fatfs_cache_set_next_cluster(struct fatfs *fs, FL_FILE *file, uint32 clusterIdx, uint32 nextCluster)
Definition: fat_cache.c:76
fatfs_cache_get_next_cluster
int fatfs_cache_get_next_cluster(struct fatfs *fs, FL_FILE *file, uint32 clusterIdx, uint32 *pNextCluster)
Definition: fat_cache.c:59
sFL_FILE
Definition: fat_filelib.h:38
uint32
unsigned long uint32
Definition: fat_types.h:23
fatfs
Definition: fat_access.h:57