mirror of
https://github.com/libretro/RetroArch
synced 2025-01-01 12:11:47 +00:00
6904101c44
== DETAILS Really simple code cleanup, because my editor flags trailing whitespaces and it's pretty annoying.
28 lines
596 B
C
28 lines
596 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
|