blob: 8ff40b790f9289633b66573d7c026b8fc570ea6d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// license:???
// copyright-holders:???
/***************************************************************************
APRIDISK disk image format
***************************************************************************/
#ifndef __APRIDISK_H__
#define __APRIDISK_H__
#include "flopimg.h"
FLOPPY_IDENTIFY( apridisk_identify );
FLOPPY_CONSTRUCT( apridisk_construct );
#endif /* __APRIDISK_H__ */
|