silence some warnings (dhewg)
[libogc.git] / gc / iso9660.h
blob498cf9aedade0f16d7345f0a9fd226c1e10171d3
1 /****************************************************************************
2 * ISO9660 devoptab
3 *
4 * Copyright (C) 2008-2010
5 * tipoloski, clava, shagkur, Tantric, joedj
6 ****************************************************************************/
8 #ifndef __ISO9660_H__
9 #define __ISO9660_H__
11 #include <gctypes.h>
13 #define ISO_MAXPATHLEN 128
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
19 bool ISO9660_Mount(const char* name, const DISC_INTERFACE* disc_interface);
20 bool ISO9660_Unmount(const char* name);
21 const char *ISO9660_GetVolumeLabel(const char *name);
23 #ifdef __cplusplus
25 #endif
27 #endif