mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
18 lines
227 B
C
18 lines
227 B
C
/*
|
|
*
|
|
* (c) 2008 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include "libblock.h"
|
|
|
|
stream_VOLUME *block_mount(device_io_t *device)
|
|
{
|
|
return (stream_VOLUME*)device;
|
|
}
|
|
|
|
int block_umount(stream_VOLUME *volume)
|
|
{
|
|
return 0;
|
|
}
|