gameblabla 6f84b7fa5c
Partially reverting old commit "Removing CrabEmuZ80"
We broke save states along the way when we improperly switched variable
types.

The end result is also a lot of needless conversions between types.

This commit should hopefully address that, and we fixed broken save
states.
2019-03-13 01:48:28 +01:00

11 lines
240 B
C

#ifndef FILEIO_H_
#define FILEIO_H_
/* Function prototypes */
uint8_t *loadFromZipByName(char *archive, const char *filename, uint32_t *filesize);
int32_t check_zip(const char *filename);
//int gzsize(gzFile *gd);
#endif /* FILEIO_H_ */