2016-12-16 23:33:30 +01:00
|
|
|
#include "../../payload/titleprot_bin.h"
|
2016-12-15 01:51:06 +01:00
|
|
|
#include "../../payload/wupserver_bin.h"
|
|
|
|
|
2016-12-19 04:14:47 +01:00
|
|
|
//not really a bin but still a const val
|
|
|
|
const int from_cbhc = 1;
|
|
|
|
|
2016-12-16 23:33:30 +01:00
|
|
|
const unsigned char *get_titleprot_bin()
|
|
|
|
{
|
|
|
|
return titleprot_bin;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int get_titleprot_bin_len()
|
|
|
|
{
|
|
|
|
return titleprot_bin_len;
|
|
|
|
}
|
|
|
|
|
2016-12-15 01:51:06 +01:00
|
|
|
const unsigned char *get_wupserver_bin()
|
|
|
|
{
|
|
|
|
return wupserver_bin;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int get_wupserver_bin_len()
|
|
|
|
{
|
|
|
|
return wupserver_bin_len;
|
|
|
|
}
|