diff options
author | 2012-01-07 21:03:04 +0000 | |
---|---|---|
committer | 2012-01-07 21:03:04 +0000 | |
commit | f659a7f5ff3831730fa60c6d95e08a11a1f32814 (patch) | |
tree | 076827f20f5014283b4b20a9c21896c1f20bcd31 /src/lib/formats/dfi_dsk.h | |
parent | 517ae1369fbb4071e77a6f9efbf480134bcbbc6c (diff) |
mess sync (nw)
Diffstat (limited to 'src/lib/formats/dfi_dsk.h')
-rw-r--r-- | src/lib/formats/dfi_dsk.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/lib/formats/dfi_dsk.h b/src/lib/formats/dfi_dsk.h index e69de29bb2d..c645372ea6b 100644 --- a/src/lib/formats/dfi_dsk.h +++ b/src/lib/formats/dfi_dsk.h @@ -0,0 +1,23 @@ +#ifndef DFI_DSK_H +#define DFI_DSK_H + +#include "flopimg.h" + +class dfi_format : public floppy_image_format_t +{ +public: + dfi_format(); + + virtual int identify(io_generic *io, UINT32 form_factor); + virtual bool load(io_generic *io, UINT32 form_factor, floppy_image *image); + // virtual bool save(io_generic *io, floppy_image *image); + + virtual const char *name() const; + virtual const char *description() const; + virtual const char *extensions() const; + virtual bool supports_save() const; +}; + +extern const floppy_format_type FLOPPY_DFI_FORMAT; + +#endif /* DFI_DSK_H */ |