mirror of
https://github.com/Wiimpathy/HatariWii.git
synced 2025-07-06 15:05:44 +02:00
11 lines
438 B
C
11 lines
438 B
C
/*
|
|
Hatari - dim.h
|
|
|
|
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.
|
|
*/
|
|
|
|
extern bool DIM_FileNameIsDIM(const char *pszFileName, bool bAllowGZ);
|
|
extern Uint8 *DIM_ReadDisk(int Drive, const char *pszFileName, long *pImageSize, int *pImageType);
|
|
extern bool DIM_WriteDisk(int Drive, const char *pszFileName, Uint8 *pBuffer, int ImageSize);
|