mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-03 01:55:06 +01:00
96cb18d26f
*corrected the patch for returnTo using d2x (should be working now) *added block ios reload of d2x. you can choose the methods in the game settings (same option as for hermes ios but it can be 1 or 2 on waninkoko ios, last option on screen) (not tested yet) *major restructuring of patching code for game patches inside the source
19 lines
332 B
C
19 lines
332 B
C
#ifndef _ALTERNATEDOL_H_
|
|
#define _ALTERNATEDOL_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
/* not the full path is needed here, the path where the dol is */
|
|
bool Load_Dol(void **buffer, int* dollen, const char * filepath);
|
|
u32 load_dol_image(void *dolstart);
|
|
u32 Load_Dol_from_disc(u32 offset);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|