printer: add ability to delay printing

This commit is contained in:
2024-09-27 10:57:35 +02:00
parent bb773a63ce
commit 4fa9abffe8
3 changed files with 30 additions and 8 deletions

View File

@ -80,4 +80,6 @@ void printer_config_load(struct printer_config *cfg, const wchar_t *filename)
cfg->printer_out_path,
_countof(cfg->printer_out_path),
filename);
cfg->wait_time = GetPrivateProfileIntW(L"printer", L"waitTime", 0, filename);
}