mirror of
https://github.com/ventoy/Ventoy.git
synced 2025-05-20 02:05:15 -04:00
1.0.36 release
This commit is contained in:
parent
7b08954e57
commit
cbbd57eee5
58 changed files with 136 additions and 1042 deletions
14
LinuxGUI/Ventoy2Disk/Lib/fat_io_lib/fat_write.h
Normal file
14
LinuxGUI/Ventoy2Disk/Lib/fat_io_lib/fat_write.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#ifndef __FAT_WRITE_H__
|
||||
#define __FAT_WRITE_H__
|
||||
|
||||
#include "fat_defs.h"
|
||||
#include "fat_opts.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Prototypes
|
||||
//-----------------------------------------------------------------------------
|
||||
int fatfs_add_file_entry(struct fatfs *fs, uint32 dirCluster, char *filename, char *shortfilename, uint32 startCluster, uint32 size, int dir);
|
||||
int fatfs_add_free_space(struct fatfs *fs, uint32 *startCluster, uint32 clusters);
|
||||
int fatfs_allocate_free_space(struct fatfs *fs, int newFile, uint32 *startCluster, uint32 size);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue