rufus/src/ms-sys/fat12.c

60 lines
2.1 KiB
C

/******************************************************************
Copyright (C) 2009 Henrik Carlqvist
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
******************************************************************/
#include <stdio.h>
#include <string.h>
#include "file.h"
#include "fat12.h"
int is_fat_12_fs(FILE *fp)
{
char *szMagic = "FAT12 ";
return contains_data(fp, 0x36, szMagic, strlen(szMagic));
} /* is_fat_12_fs */
int entire_fat_12_br_matches(FILE *fp)
{
#include "br_fat12_0x0.h"
#include "br_fat12_0x3e.h"
return
( contains_data(fp, 0x0, br_fat12_0x0, sizeof(br_fat12_0x0)) &&
/* BIOS Parameter Block might differ between systems */
contains_data(fp, 0x3e, br_fat12_0x3e, sizeof(br_fat12_0x3e)) );
} /* entire_fat_12_br_matches */
int write_fat_12_br(FILE *fp, int bKeepLabel)
{
#include "label_11_char.h"
#include "br_fat12_0x0.h"
#include "br_fat12_0x3e.h"
if(bKeepLabel)
return
( write_data(fp, 0x0, br_fat12_0x0, sizeof(br_fat12_0x0)) &&
/* BIOS Parameter Block might differ between systems */
write_data(fp, 0x3e, br_fat12_0x3e, sizeof(br_fat12_0x3e)) );
else
return
( write_data(fp, 0x0, br_fat12_0x0, sizeof(br_fat12_0x0)) &&
/* BIOS Parameter Block might differ between systems */
write_data(fp, 0x2b, label_11_char, sizeof(label_11_char)) &&
write_data(fp, 0x3e, br_fat12_0x3e, sizeof(br_fat12_0x3e)) );
} /* write_fat_12_br */