haxchi/dsrom/CBHC/arm_kernel/source/getbins.c
FIX94 3b005e9a39 -added anti move/delete protection of the ds vc title when in CBHC CFW
NOTE: this change (as well as the last update) do NOT AFFECT MOCHA CFW, they only affect my internal CBHC CFW which you can enable by just setting it to autoboot system menu which will give you full signature and region patching as well as this protection and re-applying patches on reloads; overall letting your wiiu and the menu run as they would normally
2016-12-16 23:33:30 +01:00

23 lines
358 B
C

#include "../../payload/titleprot_bin.h"
#include "../../payload/wupserver_bin.h"
const unsigned char *get_titleprot_bin()
{
return titleprot_bin;
}
unsigned int get_titleprot_bin_len()
{
return titleprot_bin_len;
}
const unsigned char *get_wupserver_bin()
{
return wupserver_bin;
}
unsigned int get_wupserver_bin_len()
{
return wupserver_bin_len;
}