mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
9bd9755dbb
Signed-off-by: Laurent Vivier <Laurent@Vivier.EU>
20 lines
289 B
C
20 lines
289 B
C
/*
|
|
*
|
|
* (c) 2008 Laurent Vivier <Laurent@Vivier.EU>
|
|
*
|
|
*/
|
|
|
|
#include <libstream.h>
|
|
#include "libcontainer.h"
|
|
#include "container.h"
|
|
|
|
stream_VOLUME *container_mount(device_io_t *device)
|
|
{
|
|
return (stream_VOLUME*)device;
|
|
}
|
|
|
|
int container_umount(stream_VOLUME *volume)
|
|
{
|
|
return 0;
|
|
}
|