2004-12-21 18:00:23 +00:00
|
|
|
static __attribute__((used)) char* rcsid = "$CVSHeader$";
|
2004-12-14 23:49:59 +00:00
|
|
|
/*
|
|
|
|
*
|
2006-09-15 14:55:39 +00:00
|
|
|
* (c) 2004 Laurent Vivier <Laurent@lvivier.info>
|
2004-12-14 23:49:59 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "partition.h"
|
|
|
|
#include "libemile.h"
|
2006-05-29 19:56:13 +00:00
|
|
|
#include "emile.h"
|
2004-12-14 23:49:59 +00:00
|
|
|
|
|
|
|
int emile_map_get_partition_geometry(emile_map_t *map, int *start, int *count)
|
|
|
|
{
|
|
|
|
if (!emile_map_partition_is_valid(map))
|
|
|
|
return -1;
|
|
|
|
|
2007-02-24 13:35:32 +00:00
|
|
|
*start = read_long((u_int32_t*)&map->partition.PyPartStart);
|
|
|
|
*count = read_long((u_int32_t*)&map->partition.PartBlkCnt);
|
2004-12-14 23:49:59 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|