mirror of
https://github.com/pbatard/rufus.git
synced 2025-06-05 01:03:54 -04:00
[mbr] added mbr detection
* also added write_data() for Windows in file.h * also merged/removed fat16/32 includes * also removed disk-signature for zeroed MBR detection
This commit is contained in:
parent
2d8a674b88
commit
88143701ed
13 changed files with 116 additions and 105 deletions
|
@ -20,4 +20,13 @@ int entire_fat_16_br_matches(FILE *fp);
|
|||
FALSE */
|
||||
int write_fat_16_br(FILE *fp, int bKeepLabel);
|
||||
|
||||
/* returns TRUE if the file has an exact match ot the FAT16 boot record this
|
||||
program would create for FreeDOS, otherwise FALSE.
|
||||
The file position will change when this function is called! */
|
||||
int entire_fat_16_fd_br_matches(FILE *fp);
|
||||
|
||||
/* Writes a FAT16 FreeDOS boot record to a file, returns TRUE on success,
|
||||
otherwise FALSE */
|
||||
int write_fat_16_fd_br(FILE *fp, int bKeepLabel);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue