mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-11 09:25:05 -04:00
28 lines
442 B
C
28 lines
442 B
C
#ifndef AURORA_DVD_H
|
|
#define AURORA_DVD_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdbool.h>
|
|
#include <dolphin/types.h>
|
|
|
|
/**
|
|
* Open a GC/Wii disc image for use by the DVD API.
|
|
* Must be called before DVDInit().
|
|
* Returns true on success, false on failure.
|
|
*/
|
|
bool aurora_dvd_open(const char* disc_path);
|
|
|
|
/**
|
|
* Close the disc image and free all resources.
|
|
*/
|
|
void aurora_dvd_close(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|