revert between 56095 -> 55830 in arch
[AROS.git] / workbench / devs / diskimage / plugins / fdi / fdi2raw.h
blobb03158b728e6f7b330726a77ba259f8cccb01698
1 #ifndef FDI2RAW_H
2 #define FDI2RAW_H
4 #include <stdint.h>
6 struct fdi;
7 typedef struct fdi FDI;
9 typedef uint8_t uae_u8;
10 typedef uint16_t uae_u16;
11 typedef uint32_t uae_u32;
13 void fdi2raw_header_free (FDI *fdi);
14 int fdi2raw_get_last_track (FDI *fdi);
15 int fdi2raw_get_num_sector (FDI *fdi);
16 unsigned int fdi2raw_get_last_head (FDI *fdi);
17 FDI *fdi2raw_header(BPTR f);
18 int fdi2raw_loadtrack (FDI *fdi, uae_u16 *mfmbuf, uae_u16 *tracktiming,
19 unsigned int track, unsigned int *tracklength, unsigned int *indexoffsetp,
20 int *multirev, int mfm);
22 #endif