mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-15 13:04:40 +00:00
18 lines
326 B
C
18 lines
326 B
C
static __attribute__((used)) char* rcsid = "$CVSHeader$";
|
|
/*
|
|
*
|
|
* (c) 2004 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include "partition.h"
|
|
#include "libemile.h"
|
|
#include "emile.h"
|
|
|
|
int emile_map_partition_set_flags(emile_map_t *map, int flags)
|
|
{
|
|
write_long((u_int32_t*)&map->partition.PartStatus, flags);
|
|
|
|
return 0;
|
|
}
|