You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.0 KiB
C

// Программа для замены таблицы разделов в загрузчике usbloader
//
//
#include <stdio.h>
#include <stdint.h>
#ifndef WIN32
//%%%%
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#else
//%%%%
#include <windows.h>
#include "getopt.h"
#include "printf.h"
#endif
#include "parts.h"
//############################################################################################################3
void main(int argc, char* argv[]) {
struct ptable_t ptable;
FILE* in;
if (argc != 2) {
printf("\n - Не указано имя файла с таблицей разделов\n");
return;
}
in=fopen(argv[optind],"r+b");
if (in == 0) {
printf("\n Ошибка открытия файла %s\n",argv[optind]);
return;
}
// читаем текущую таблицу
fread(&ptable,sizeof(ptable),1,in);
if (strncmp(ptable.head, "pTableHead", 16) != 0) {
printf("\n Файл не является таблицей разделов\n");
return ;
}
show_map(ptable);
}