mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 14:22:38 +01:00
21 lines
310 B
C
21 lines
310 B
C
|
#include <coreinit/dynload.h>
|
||
|
|
||
|
int
|
||
|
my_first_export()
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
int
|
||
|
rpl_main(OSDynLoad_Module module,
|
||
|
OSDynLoad_EntryReason reason)
|
||
|
{
|
||
|
if (reason == OS_DYNLOAD_LOADED) {
|
||
|
// Do stuff on load
|
||
|
} else if (reason == OS_DYNLOAD_UNLOADED) {
|
||
|
// Do stuff on unload
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|