summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/fs_unformatted.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2021-05-23 19:11:45 +0200
committer Olivier Galibert <galibert@pobox.com>2021-05-24 14:06:06 +0200
commitda1bd3b0ec0a1f5f5999cd8a98de0e8d76dca48b (patch)
treeb587d2b61410be84111f6e2caf7289d93560d863 /src/lib/formats/fs_unformatted.h
parent9508ac0530c0638b6595fb46d04cc3d62674d0c0 (diff)
reorganize the floptool code, add some write support
Diffstat (limited to 'src/lib/formats/fs_unformatted.h')
-rw-r--r--src/lib/formats/fs_unformatted.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/formats/fs_unformatted.h b/src/lib/formats/fs_unformatted.h
index fe5ac68973d..d3c741013a5 100644
--- a/src/lib/formats/fs_unformatted.h
+++ b/src/lib/formats/fs_unformatted.h
@@ -38,6 +38,9 @@ public:
fs_unformatted() : filesystem_manager_t() {}
+ virtual const char *name() const override;
+ virtual const char *description() const override;
+
static void format(u32 key, floppy_image *image);
virtual void enumerate_f(floppy_enumerator &fe, uint32_t form_factor, const std::vector<uint32_t> &variants) const override;
@@ -49,6 +52,6 @@ public:
virtual bool has_rsrc() const override;
};
-extern const filesystem_manager_type FS_UNFORMATTED;
+extern const fs_unformatted FS_UNFORMATTED;
#endif