LibXenon
Bare-metal Xbox 360 homebrew library
Loading...
Searching...
No Matches
iso9660.h
Go to the documentation of this file.
1/****************************************************************************
2 * ISO9660 devoptab
3 *
4 * Copyright (C) 2008-2010
5 * tipoloski, clava, shagkur, Tantric, joedj
6 ****************************************************************************/
7
8#ifndef __ISO9660_H__
9#define __ISO9660_H__
10
11#include <xetypes.h>
12#include <sys/iosupport.h>
13#include <diskio/disc_io.h>
14
15#define MAX_ISO_FILES 8
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21bool ISO9660_Mount(const char* name, const DISC_INTERFACE* disc_interface);
22bool ISO9660_Unmount(const char* name);
23const char *ISO9660_GetVolumeLabel(const char *name);
24
25#ifdef __cplusplus
26}
27#endif
28
29#endif
30
bool ISO9660_Mount(const char *name, const DISC_INTERFACE *disc_interface)
Definition: iso9660.c:1115
const char * ISO9660_GetVolumeLabel(const char *name)
Definition: iso9660.c:1187
bool ISO9660_Unmount(const char *name)
Definition: iso9660.c:1176