tp/include/revolution/os/OSReboot.h

20 lines
361 B
C

#ifndef _REVOLUTION_OSREBOOT_H_
#define _REVOLUTION_OSREBOOT_H_
#include <revolution/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