mirror of
https://github.com/pbatard/rufus.git
synced 2025-06-01 23:38:30 -04:00
[misc] move source files to src/ directory
This commit is contained in:
parent
4edb492c19
commit
48f9dd47ae
53 changed files with 249 additions and 260 deletions
41
src/inc/fat32.h
Normal file
41
src/inc/fat32.h
Normal file
|
@ -0,0 +1,41 @@
|
|||
#ifndef FAT32_H
|
||||
#define FAT32_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
/* returns TRUE if the file has a FAT32 file system, otherwise FALSE.
|
||||
The file position will change when this function is called! */
|
||||
int is_fat_32_fs(FILE *fp);
|
||||
|
||||
/* returns TRUE if the file has a FAT32 DOS boot record, otherwise FALSE.
|
||||
The file position will change when this function is called! */
|
||||
int is_fat_32_br(FILE *fp);
|
||||
|
||||
/* returns TRUE if the file has an exact match of the FAT32 DOS boot record
|
||||
this program would create, otherwise FALSE.
|
||||
The file position will change when this function is called! */
|
||||
int entire_fat_32_br_matches(FILE *fp);
|
||||
|
||||
/* Writes a FAT32 DOS boot record to a file, returns TRUE on success, otherwise
|
||||
FALSE */
|
||||
int write_fat_32_br(FILE *fp, int bKeepLabel);
|
||||
|
||||
/* returns TRUE if the file has an exact match ot the FAT32 boot record this
|
||||
program would create for FreeDOS, otherwise FALSE.
|
||||
The file position will change when this function is called! */
|
||||
int entire_fat_32_fd_br_matches(FILE *fp);
|
||||
|
||||
/* Writes a FAT32 FreeDOS boot record to a file, returns TRUE on success,
|
||||
otherwise FALSE */
|
||||
int write_fat_32_fd_br(FILE *fp, int bKeepLabel);
|
||||
|
||||
/* returns TRUE if the file has an exact match ot the FAT32 boot record this
|
||||
program would create for NT, otherwise FALSE.
|
||||
The file position will change when this function is called! */
|
||||
int entire_fat_32_nt_br_matches(FILE *fp);
|
||||
|
||||
/* Writes a FAT32 NT boot record to a file, returns TRUE on success, otherwise
|
||||
FALSE */
|
||||
int write_fat_32_nt_br(FILE *fp, int bKeepLabel);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue