mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
15 lines
217 B
C
15 lines
217 B
C
/*
|
|
*
|
|
* (c) 2004-2007 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include "libmap.h"
|
|
|
|
int map_partition_set_flags(map_t *map, int flags)
|
|
{
|
|
write_long((u_int32_t*)&map->partition.PartStatus, flags);
|
|
|
|
return 0;
|
|
}
|