mirror of
https://github.com/holub/mame
synced 2025-05-23 06:08:48 +03:00
17 lines
251 B
C
17 lines
251 B
C
/*
|
|
uef_cas.h
|
|
|
|
Format code for uef cassette files
|
|
*/
|
|
|
|
#ifndef UEF_CAS_H
|
|
#define UEF_CAS_H
|
|
|
|
#include "cassimg.h"
|
|
|
|
extern const struct CassetteFormat uef_cassette_format;
|
|
|
|
CASSETTE_FORMATLIST_EXTERN(uef_cassette_formats);
|
|
|
|
#endif /* UEF_CAS_H */
|