EMILE/libfloppy/libfloppy.h

22 lines
476 B
C
Raw Normal View History

2005-11-18 00:06:31 +00:00
/*
*
* (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
2005-11-16 01:29:10 +00:00
#include <sys/types.h>
#include <unistd.h>
#define SECTOR_SIZE_BITS 9
#define SECTOR_SIZE (1 << (SECTOR_SIZE_BITS))
#define SECTOR_PER_TRACK 18
#define SIDE_NB 2
typedef struct {
int unit;
} floppy_device_t;
2005-11-16 01:29:10 +00:00
extern floppy_device_t *floppy_open(int unit);
extern int floppy_close(floppy_device_t* device);
extern int floppy_read_sector(floppy_device_t *device,off_t offset, void* buffer, size_t size);