45 unsigned int last_access;
53 unsigned int numberOfPages;
54 unsigned int sectorsPerPage;
55 unsigned int bytesPerSector;
bool _FAT_cache_readLittleEndianValue(CACHE *cache, uint32_t *value, sec_t sector, unsigned int offset, int num_bytes)
Definition: cache.c:206
unsigned int bytesPerSector
Definition: cache.h:55
bool _FAT_cache_writePartialSector(CACHE *cache, const void *buffer, sec_t sector, unsigned int offset, size_t size)
Definition: cache.c:224
void _FAT_cache_destructor(CACHE *cache)
Definition: cache.c:93
void _FAT_cache_invalidate(CACHE *cache)
Definition: cache.c:325
bool _FAT_cache_writeSectors(CACHE *cache, sec_t sector, sec_t numSectors, const void *buffer)
Definition: cache.c:278
GLsizeiptr size
Definition: glext.h:6559
bool _FAT_cache_flush(CACHE *cache)
Definition: cache.c:308
CACHE * _FAT_cache_constructor(unsigned int numberOfPages, unsigned int sectorsPerPage, const DISC_INTERFACE *discInterface, sec_t endOfPartition, unsigned int bytesPerSector)
Definition: cache.c:49
GLuint GLuint GLsizei count
Definition: glext.h:6292
bool _FAT_cache_readPartialSector(CACHE *cache, void *buffer, sec_t sector, unsigned int offset, size_t size)
Definition: cache.c:190
uint32_t sec_t
Definition: iosuhax_disc_interface.h:40
bool _FAT_cache_writeLittleEndianValue(CACHE *cache, const uint32_t value, sec_t sector, unsigned int offset, int num_bytes)
Definition: cache.c:241
static bool _FAT_cache_writeSector(CACHE *cache, const void *buffer, sec_t sector)
Definition: cache.h:107
bool _FAT_cache_eraseWritePartialSector(CACHE *cache, const void *buffer, sec_t sector, unsigned int offset, size_t size)
Definition: cache.c:259
Definition: iosuhax_disc_interface.h:52
GLsizei const GLfloat * value
Definition: glext.h:6709
Definition: video4linux2.c:51
GLintptr offset
Definition: glext.h:6560
bool _FAT_cache_readSectors(CACHE *cache, sec_t sector, sec_t numSectors, void *buffer)
Definition: cache.c:161
unsigned char uint8_t
Definition: stdint.h:124
unsigned int uint32_t
Definition: stdint.h:126
static bool _FAT_cache_readSector(CACHE *cache, void *buffer, sec_t sector)
Definition: cache.h:100