haxchi/dsrom/CBHC/arm_kernel/source/getbins.c

23 lines
358 B
C
Raw Normal View History

#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;
}