blob: 63de55609495d8b63267271126b245067fe19043 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
// Enumerate all the compiled-in formats
#ifndef MAME_FORMATS_ALL_H
#define MAME_FORMATS_ALL_H
#pragma once
#include "cassimg.h"
#include "flopimg.h"
#include "fsmgr.h"
struct mame_formats_enumerator {
virtual ~mame_formats_enumerator() = default;
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);
#endif
|