Added BOSS property_xb and property_x3e.
This commit is contained in:
parent
4abf42f16d
commit
88da2f456b
@ -16,6 +16,8 @@ typedef struct
|
|||||||
|
|
||||||
u8 property_xa[0x100];
|
u8 property_xa[0x100];
|
||||||
|
|
||||||
|
u8 property_xb[0x200];
|
||||||
|
|
||||||
char property_xd[0x360];//Additonal optional HTTP request headers.
|
char property_xd[0x360];//Additonal optional HTTP request headers.
|
||||||
|
|
||||||
u32 property_xe;
|
u32 property_xe;
|
||||||
@ -33,6 +35,8 @@ typedef struct
|
|||||||
u32 property_x16;
|
u32 property_x16;
|
||||||
|
|
||||||
u32 property_x3b;
|
u32 property_x3b;
|
||||||
|
|
||||||
|
u8 property_x3e[0x200];
|
||||||
} bossContext;
|
} bossContext;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -312,6 +312,9 @@ Result bossSendContextConfig(bossContext *ctx)
|
|||||||
ret = bossSendProperty(0xa, &ctx->property_xa, 0x100);
|
ret = bossSendProperty(0xa, &ctx->property_xa, 0x100);
|
||||||
if(R_FAILED(ret))return ret;
|
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);
|
ret = bossSendProperty(0xd, ctx->property_xd, 0x360);
|
||||||
if(R_FAILED(ret))return ret;
|
if(R_FAILED(ret))return ret;
|
||||||
|
|
||||||
@ -344,6 +347,9 @@ Result bossSendContextConfig(bossContext *ctx)
|
|||||||
ret = bossSendProperty(0x3b, &ctx->property_x3b, 0x4);
|
ret = bossSendProperty(0x3b, &ctx->property_x3b, 0x4);
|
||||||
if(R_FAILED(ret))return ret;
|
if(R_FAILED(ret))return ret;
|
||||||
|
|
||||||
|
ret = bossSendProperty(0x3e, &ctx->property_x3e, 0x200);
|
||||||
|
if(R_FAILED(ret))return ret;
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user