mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
34 lines
954 B
C
34 lines
954 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#ifndef _LIBCONTAINER_H_
|
|
#define _LIBCONTAINER_H_
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <libstream.h>
|
|
|
|
struct emile_block {
|
|
u_int32_t offset; /* offset of first block */
|
|
u_int16_t count; /* number of blocks */
|
|
} __attribute__((packed));
|
|
|
|
struct emile_container {
|
|
u_int32_t size;
|
|
struct emile_block blocks[0];
|
|
} __attribute__((packed));
|
|
|
|
extern stream_VOLUME *container_mount(device_io_t *device);
|
|
extern int container_umount(stream_VOLUME *volume);
|
|
extern int container_init(device_io_t *device, filesystem_io_t *fs);
|
|
extern stream_FILE *container_open(stream_VOLUME *volume, char *current);
|
|
extern void container_close(stream_FILE *file);
|
|
extern int container_lseek(stream_FILE *file, off_t offset, int whence);
|
|
extern size_t container_read(stream_FILE *file, void *ptr, size_t size);
|
|
extern int container_fstat(stream_FILE *file, struct stream_stat *buf);
|
|
|
|
#endif /* _LIBCONTAINER_H_ */
|