mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 06:08:49 +00:00
39 lines
891 B
C
39 lines
891 B
C
static __attribute__((used)) char* rcsid = "$CVSHeader$";
|
|
/*
|
|
*
|
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
#include "libemile.h"
|
|
#include "emile.h"
|
|
#include "bootblock.h"
|
|
|
|
int emile_first_get_param(int fd, int *drive_num, int *second_offset,
|
|
int *second_size)
|
|
{
|
|
eBootBlock_t firstBlock;
|
|
int ret;
|
|
|
|
ret = read(fd, &firstBlock, sizeof(firstBlock));
|
|
if (ret != sizeof(firstBlock))
|
|
return EEMILE_CANNOT_READ_FIRST;
|
|
|
|
if ( strncmp( firstBlock.boot_block_header.SysName+1,
|
|
"Mac Bootloader", 14) == 0 )
|
|
{
|
|
*drive_num = read_short(&firstBlock.second_param_block.ioVRefNum);
|
|
*second_offset = read_long(&firstBlock.second_param_block.ioPosOffset);
|
|
*second_size = read_long(&firstBlock.second_param_block.ioReqCount);
|
|
}
|
|
else
|
|
return EEMILE_UNKNOWN_FIRST;
|
|
|
|
return 0;
|
|
}
|