wacca: io is now part of mercuryhook.dll

This commit is contained in:
2022-08-11 23:58:24 -04:00
parent 2fb04ce08f
commit e677b9ed5b
4 changed files with 11 additions and 11 deletions

View File

@ -20,6 +20,7 @@ static HRESULT misc_read_app_loader_count(void *bytes, uint32_t *nbytes);
static HRESULT misc_read_cpu_temp_error(void *bytes, uint32_t *nbytes);
static HRESULT misc_read_cpu_temp_warning(void *bytes, uint32_t *nbytes);
static HRESULT misc_read_platform_id(void *bytes, uint32_t *nbytes);
static HRESULT misc_read_platform_name(void *bytes, uint32_t *nbytes);
static const struct hook_symbol misc_syms[] = {
{
@ -65,6 +66,10 @@ static const struct reg_hook_val misc_static_keys[] = {
.name = L"PlatformId",
.read = misc_read_platform_id,
.type = REG_SZ,
}, {
.name = L"PlatformName",
.read = misc_read_platform_name,
.type = REG_SZ,
}
};
@ -160,3 +165,8 @@ static HRESULT misc_read_platform_id(void *bytes, uint32_t *nbytes)
{
return reg_hook_read_wstr(bytes, nbytes, misc_platform_id);
}
static HRESULT misc_read_platform_name(void *bytes, uint32_t *nbytes)
{
return reg_hook_read_wstr(bytes, nbytes, L"ALLS MX2.1"); // TODO: Dynamic
}