mirror of
https://github.com/zeldaret/tp
synced 2026-05-30 00:47:05 -04:00
2453c0e333
* move dolsdk2004 over * cleanup some temp work * finish and cleanup gf * b_bh done * d_a_e_mb done
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
|