platform: Add ALLS platform

This commit is contained in:
Tau
2019-08-30 18:46:57 -04:00
parent 86bd7443cc
commit 13c59b13b8
4 changed files with 81 additions and 2 deletions

View File

@ -7,9 +7,58 @@
#include "platform/hwmon.h"
#include "platform/misc.h"
#include "platform/nusec.h"
#include "platform/pcbid.h"
#include "platform/platform.h"
#include "platform/vfs.h"
HRESULT platform_hook_init_alls(
const struct alls_config *cfg,
const char *game_id,
const char *platform_id,
HMODULE redir_mod)
{
HRESULT hr;
assert(cfg != NULL);
assert(game_id != NULL);
assert(platform_id != NULL);
assert(redir_mod != NULL);
hr = amvideo_hook_init(&cfg->amvideo, redir_mod);
if (FAILED(hr)) {
return hr;
}
hr = hwmon_hook_init(&cfg->hwmon);
if (FAILED(hr)) {
return hr;
}
hr = misc_hook_init(&cfg->misc, platform_id);
if (FAILED(hr)) {
return hr;
}
hr = nusec_hook_init(&cfg->nusec, game_id, platform_id);
if (FAILED(hr)) {
return hr;
}
pcbid_hook_init(&cfg->pcbid);
hr = vfs_hook_init(&cfg->vfs);
if (FAILED(hr)) {
return hr;
}
return S_OK;
}
HRESULT platform_hook_init_nu(
const struct nu_config *cfg,
const char *game_id,