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>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "partition.h"
|
|
|
|
#include "libemile.h"
|
|
|
|
|
|
|
|
int emile_map_partition_set_startup(emile_map_t *map, int enable)
|
|
|
|
{
|
|
|
|
if (!emile_map_partition_is_valid(map))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (enable)
|
2006-05-29 20:18:19 +00:00
|
|
|
emile_map_partition_set_flags(map,
|
|
|
|
emile_map_partition_get_flags(map) | kPartitionIsStartup);
|
2004-12-14 23:49:59 +00:00
|
|
|
else
|
2006-05-29 20:18:19 +00:00
|
|
|
emile_map_partition_set_flags(map,
|
|
|
|
emile_map_partition_get_flags(map) & ~kPartitionIsStartup);
|
2004-12-14 23:49:59 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|