Merge pull request 'kemono: only load I/O dll inside amdaemon' (#38) from Haruka/segatools:kemonofr64bit into develop

Reviewed-on: Dniel97/segatools#38
This commit is contained in:
Dniel97 2024-09-28 13:36:06 +00:00
commit 53fb8c28ea
2 changed files with 33 additions and 7 deletions

View File

@ -12,12 +12,34 @@
#include "platform/config.h"
// Check windows
#if _WIN32 || _WIN64
#if _WIN64
#define ENV64BIT
#else
#define ENV32BIT
#endif
#endif
// Check GCC
#if __GNUC__
#if __x86_64__ || __ppc64__
#define ENV64BIT
#else
#define ENV32BIT
#endif
#endif
void kemono_dll_config_load(
struct kemono_dll_config *cfg,
const wchar_t *filename) {
assert(cfg != NULL);
assert(filename != NULL);
#if defined(ENV32BIT)
// Always empty, due to amdaemon being 64 bit in 32 bit mode
memset(cfg->path, 0, sizeof(cfg->path));
#elif defined(ENV64BIT)
GetPrivateProfileStringW(
L"kemonoio",
L"path",
@ -25,6 +47,9 @@ void kemono_dll_config_load(
cfg->path,
_countof(cfg->path),
filename);
#else
#error "Unknown environment"
#endif
}
void led15093_config_load(struct led15093_config *cfg, const wchar_t *filename)

View File

@ -34,6 +34,7 @@ static DWORD CALLBACK kemono_pre_startup(void) {
/* Load config */
kemono_hook_cfg.aime.dll.path64 = true;
kemono_hook_config_load(&kemono_hook_cfg, L".\\segatools.ini");
/* Hook Win32 APIs */