cxb: server support added, bugfixes, thanks @Midorica

This commit is contained in:
2024-03-13 17:51:58 +01:00
parent 2590e749ca
commit 097b74d849
12 changed files with 135 additions and 30 deletions

View File

@ -113,6 +113,14 @@ void dns_config_load(struct dns_config *cfg, const wchar_t *filename)
cfg->aimedb,
_countof(cfg->aimedb),
filename);
GetPrivateProfileStringW(
L"dns",
L"title",
L"title",
cfg->title,
_countof(cfg->title),
filename);
}
void hwmon_config_load(struct hwmon_config *cfg, const wchar_t *filename)