In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

Difference between revisions of "Libiso9660"

From WiiBrew
Jump to navigation Jump to search
m (lowercase title)
m (Category)
 
Line 26: Line 26:
 
*[[Visual Boy Advance GX]]
 
*[[Visual Boy Advance GX]]
 
*[[MPlayer CE]]
 
*[[MPlayer CE]]
 +
 +
[[Category:Libraries]]

Latest revision as of 20:14, 13 May 2021

libiso9960 is a DVD devoptab included with libogc. With it, once a DVD is mounted, you can access a ISO9660 DVD filesystem using standard I/O functions under the prefix dvd:/.

Usage

Add these includes:

#include <di/di.h>
#include <iso9660.h>

Mount the DVD via the disc interface:

if(&__io_wiidvd->isInserted())
	ISO9660_Mount();

Unmount the filesystem:

if(!&__io_wiidvd->isInserted())
	ISO9660_Unmount();

Applications that use libiso9660