savestates works

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@26 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2007-01-29 23:39:15 +00:00
parent 51a902ae25
commit 7573607016
16 changed files with 219 additions and 161 deletions

View file

@ -1,8 +1,6 @@
#ifndef _CD_FILE_H
#define _CD_FILE_H
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
@ -13,18 +11,7 @@ extern "C" {
//#define TYPE_WAV 4
struct _file_track {
FILE *F;
int Length;
short Type; // can be char
short KBtps; // bytes per sec for mp3s (bitrate / 8)
};
extern struct _file_track Tracks[100];
extern char Track_Played;
int FILE_Init(void);
void FILE_End(void);
int Load_ISO(const char *iso_name, int is_bin);
void Unload_ISO(void);