#ifndef _CASSETTE_H_
#define _CASSETTE_H_

#include <stdio.h>		/* for FILE and FILENAME_MAX */

#include "atari.h"		/* for UBYTE */

#define CASSETTE_DESCRIPTION_MAX 256

void CASSETTE_Initialise(int *argc, char *argv[]);

int CASSETTE_CheckFile(char *filename, FILE **fp, char *description, int *last_block, int *isCAS);
int CASSETTE_Insert(char *filename);
void CASSETTE_Remove(void);
extern char cassette_filename[FILENAME_MAX];
extern char cassette_description[CASSETTE_DESCRIPTION_MAX];

extern int cassette_current_block;
extern int cassette_max_block;

extern int hold_start;
extern int hold_start_on_reboot; /* preserve hold_start after reboot */
extern int press_space;

int CASSETTE_AddGap(int gaptime);
void CASSETTE_LeaderLoad();
void CASSETTE_LeaderSave();
int CASSETTE_Read(void);
int CASSETTE_Write(int length);
extern UBYTE cassette_buffer[4096];

#ifdef __PLUS
int CASSETTE_CreateFile(char *filename, FILE **fp, int *isCAS);
#endif /*__PLUS*/

#endif /* _CASSETTE_H_ */
