2017-08-19 06:46:04 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* ISO9660 devoptab
|
2017-12-12 07:55:31 +00:00
|
|
|
*
|
2017-08-19 06:46:04 +00:00
|
|
|
* 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
|