--- hatari/src/includes/zip.h 2019/04/01 07:13:45 1.1.1.5 +++ hatari/src/includes/zip.h 2019/04/09 08:53:20 1.1.1.7 @@ -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 @@ -17,12 +17,12 @@ typedef struct int nfiles; } zip_dir; -extern BOOL ZIP_FileNameIsZIP(const char *pszFileName); +extern bool ZIP_FileNameIsZIP(const char *pszFileName); 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 bool ZIP_WriteDisk(const char *pszFileName,unsigned char *pBuffer,int ImageSize); extern Uint8 *ZIP_ReadFirstFile(const char *pszFileName, long *pImageSize, const char * const ppszExts[]);