mirror of
https://github.com/libretro/RetroArch
synced 2025-01-06 10:11:54 +00:00
28 lines
597 B
C
28 lines
597 B
C
|
/****************************************************************************
|
||
|
* ISO9660 devoptab
|
||
|
*
|
||
|
* Copyright (C) 2008-2010
|
||
|
* tipoloski, clava, shagkur, Tantric, joedj
|
||
|
****************************************************************************/
|
||
|
|
||
|
#ifndef __ISO9660_H__
|
||
|
#define __ISO9660_H__
|
||
|
|
||
|
#include <gctypes.h>
|
||
|
|
||
|
#define ISO_MAXPATHLEN 128
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
bool ISO9660_Mount(const char* name, const DISC_INTERFACE* disc_interface);
|
||
|
bool ISO9660_Unmount(const char* name);
|
||
|
const char *ISO9660_GetVolumeLabel(const char *name);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|