--- hatari/src/includes/zip.h 2019/04/01 07:14:52 1.1.1.6 +++ hatari/src/includes/zip.h 2019/04/09 08:54:33 1.1.1.8 @@ -1,8 +1,8 @@ /* Hatari - zip.h - This file is distributed under the GNU Public License, version 2 or at - your option any later version. Read the file gpl.txt for details. + This file is distributed under the GNU General Public License, version 2 + or at your option any later version. Read the file gpl.txt for details. */ #ifndef HATARI_ZIP_H @@ -21,8 +21,8 @@ extern bool ZIP_FileNameIsZIP(const char extern struct dirent **ZIP_GetFilesDir(const zip_dir *files, const char *dir, int *entries); extern void ZIP_FreeZipDir(zip_dir *zd); extern zip_dir *ZIP_GetFiles(const char *pszFileName); -extern Uint8 *ZIP_ReadDisk(const char *pszFileName, const char *pszZipPath, long *pImageSize); -extern bool ZIP_WriteDisk(const char *pszFileName,unsigned char *pBuffer,int ImageSize); +extern Uint8 *ZIP_ReadDisk(int Drive, const char *pszFileName, const char *pszZipPath, long *pImageSize, int *pImageType); +extern bool ZIP_WriteDisk(int Drive, const char *pszFileName, unsigned char *pBuffer, int ImageSize); extern Uint8 *ZIP_ReadFirstFile(const char *pszFileName, long *pImageSize, const char * const ppszExts[]);