2005-02-04 00:41:37 +00:00
|
|
|
static __attribute__((used)) char* rcsid = "$CVSHeader$";
|
|
|
|
/*
|
|
|
|
*
|
2006-09-15 14:55:39 +00:00
|
|
|
* (c) 2004 Laurent Vivier <Laurent@lvivier.info>
|
2005-02-04 00:41:37 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "partition.h"
|
|
|
|
#include "libemile.h"
|
2006-05-29 20:18:19 +00:00
|
|
|
#include "emile.h"
|
2005-02-04 00:41:37 +00:00
|
|
|
|
|
|
|
int emile_map_set_driver_number(emile_map_t *map, int number)
|
|
|
|
{
|
|
|
|
if (!emile_map_is_valid(map))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (number >= DD_MAX_DRIVER)
|
|
|
|
return -1;
|
|
|
|
|
2006-05-29 20:18:19 +00:00
|
|
|
write_short(&map->drivers.DrvrCount, number);
|
2005-02-04 00:41:37 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|