diff options
author | 2021-03-04 10:49:33 +0100 | |
---|---|---|
committer | 2021-03-05 10:17:20 +0100 | |
commit | 92326e47afea2dd65ec6b5ec842454fc74f046cc (patch) | |
tree | 515de40cefa3c48bf30869f9031fbf78e4ba45d4 /src/lib/formats/all.h | |
parent | f7011c21e11e988ec26d095f48b9070760c72bc3 (diff) |
floppy: Beginning of the support for preformatted floppy images.
What's missing:
- parameters (like the disk name when it exists)
- possibly a cleanup of ram_open and friends (but not sure of the appropriate direction in which to go)
Diffstat (limited to 'src/lib/formats/all.h')
-rw-r--r-- | src/lib/formats/all.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/formats/all.h b/src/lib/formats/all.h index 3c869336d1b..63de5560949 100644 --- a/src/lib/formats/all.h +++ b/src/lib/formats/all.h @@ -10,6 +10,7 @@ #include "cassimg.h" #include "flopimg.h" +#include "fsmgr.h" struct mame_formats_enumerator { virtual ~mame_formats_enumerator() = default; @@ -17,6 +18,7 @@ struct mame_formats_enumerator { virtual void category(const char *name) = 0; virtual void add(const cassette_image::Format *const *formats) = 0; virtual void add(floppy_format_type format) = 0; + virtual void add(filesystem_manager_type fs) = 0; }; void mame_formats_full_list(mame_formats_enumerator &en); |