mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 15:01:33 -04:00
adb95b135c
Original repository: https://github.com/encounter/ww
19 lines
299 B
C
19 lines
299 B
C
#ifndef OSREBOOT_H
|
|
#define OSREBOOT_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void __OSReboot(u32 param_0, u32 param_1);
|
|
void OSSetSaveRegion(void* start, void* end);
|
|
void OSGetSaveRegion(void** start, void** end);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif /* OSREBOOT_H */
|