add almost full vfd implementation

This commit is contained in:
2024-08-23 16:30:22 +02:00
parent ac0f9f0587
commit 54cbbffae9
21 changed files with 607 additions and 78 deletions

View File

@ -90,4 +90,6 @@ void vfd_config_load(struct vfd_config *cfg, const wchar_t *filename)
assert(filename != NULL);
cfg->enable = GetPrivateProfileIntW(L"vfd", L"enable", 1, filename);
cfg->port = GetPrivateProfileIntW(L"vfd", L"portNo", 1, filename);
cfg->utf_conversion = GetPrivateProfileIntW(L"vfd", L"utfConversion", 0, filename);
}