2004-12-21 18:00:23 +00:00
|
|
|
static __attribute__((used)) char* rcsid = "$CVSHeader$";
|
2004-12-14 23:49:59 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2004-12-16 23:22:40 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2004-12-14 23:49:59 +00:00
|
|
|
#include "partition.h"
|
|
|
|
#include "libemile.h"
|
|
|
|
|
2004-12-16 23:22:40 +00:00
|
|
|
char* emile_map_get_partition_name(emile_map_t *map)
|
2004-12-14 23:49:59 +00:00
|
|
|
{
|
|
|
|
if (!emile_map_partition_is_valid(map))
|
2004-12-16 23:22:40 +00:00
|
|
|
return NULL;
|
2004-12-14 23:49:59 +00:00
|
|
|
|
2004-12-16 23:22:40 +00:00
|
|
|
return map->partition.PartName;
|
2004-12-14 23:49:59 +00:00
|
|
|
}
|