mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 06:08:49 +00:00
20 lines
339 B
C
20 lines
339 B
C
/*
|
|
*
|
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#include "partition.h"
|
|
#include "libemile.h"
|
|
|
|
int emile_map_get_partition_geometry(emile_map_t *map, int *start, int *count)
|
|
{
|
|
if (!emile_map_partition_is_valid(map))
|
|
return -1;
|
|
|
|
*start = map->partition.PyPartStart;
|
|
*count = map->partition.PartBlkCnt;
|
|
|
|
return 0;
|
|
}
|