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