Added BOSS property_xb and property_x3e.

This commit is contained in:
yellows8 2016-12-25 00:33:32 -05:00
parent 4abf42f16d
commit 88da2f456b
2 changed files with 10 additions and 0 deletions

View File

@ -16,6 +16,8 @@ typedef struct
u8 property_xa[0x100];
u8 property_xb[0x200];
char property_xd[0x360];//Additonal optional HTTP request headers.
u32 property_xe;
@ -33,6 +35,8 @@ typedef struct
u32 property_x16;
u32 property_x3b;
u8 property_x3e[0x200];
} bossContext;
/**

View File

@ -312,6 +312,9 @@ Result bossSendContextConfig(bossContext *ctx)
ret = bossSendProperty(0xa, &ctx->property_xa, 0x100);
if(R_FAILED(ret))return ret;
ret = bossSendProperty(0xb, &ctx->property_xb, 0x200);
if(R_FAILED(ret))return ret;
ret = bossSendProperty(0xd, ctx->property_xd, 0x360);
if(R_FAILED(ret))return ret;
@ -344,6 +347,9 @@ Result bossSendContextConfig(bossContext *ctx)
ret = bossSendProperty(0x3b, &ctx->property_x3b, 0x4);
if(R_FAILED(ret))return ret;
ret = bossSendProperty(0x3e, &ctx->property_x3e, 0x200);
if(R_FAILED(ret))return ret;
return ret;
}