Files
wiicompiled/aurora-main/include/aurora/dvd.h
T
patchzyy ec226e8348 init
2026-08-23 17:10:50 +02:00

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