mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-12 09:45:04 -04:00
20 lines
352 B
C
20 lines
352 B
C
#ifndef _DOLPHIN_OSREBOOT_H_
|
|
#define _DOLPHIN_OSREBOOT_H_
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void OSSetSaveRegion(void* start, void* end);
|
|
void OSGetSaveRegion(void** start, void** end);
|
|
void OSGetSavedRegion(void** start, void** end);
|
|
void __OSReboot(u32 resetCode, u32 bootDol);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|