mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-13 22:35:10 +01:00
15 lines
409 B
C
15 lines
409 B
C
|
/****************************************************************************
|
||
|
*
|
||
|
* DVD ISO9660/Joliet loading support
|
||
|
*
|
||
|
***************************************************************************/
|
||
|
#ifndef _FILEIO_DVD_H
|
||
|
#define _FILEIO_DVD_H
|
||
|
|
||
|
extern int DVD_UpdateDir(int go_up);
|
||
|
extern int DVD_ParseDirectory();
|
||
|
extern int DVD_LoadFile(unsigned char* buffer);
|
||
|
extern int DVD_Open ();
|
||
|
|
||
|
#endif
|