mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
16 lines
313 B
C
16 lines
313 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
|
|
#include <libstream.h>
|
|
|
|
extern FILE *device_open(char *device);
|
|
extern void device_close(void *data);
|
|
extern int device_read_sector(void *data, off_t offset, void* buffer, size_t size);
|