summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/ami_dsk.h
blob: 3377050be34515868c6e5cf40b6c2caffc32fa1e (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
/*********************************************************************

    formats/ami_dsk.h

    Amiga disk images

*********************************************************************/

#ifndef AMI_DSK_H_
#define AMI_DSK_H_

#include "flopimg.h"

class adf_format : public floppy_image_format_t 
{
public:
	adf_format(const char *name,const char *extensions,const char *description,const char *param_guidelines);
	
	virtual int identify(floppy_image *image);
	virtual bool load(floppy_image *image);
};

extern const floppy_format_type FLOPPY_ADF_FORMAT;

#endif /*AMI_DSK_H_*/