aime: add portNo to config

This commit is contained in:
2024-12-23 21:49:24 +01:00
parent a3120181be
commit 96bf8cab81
6 changed files with 25 additions and 11 deletions

View File

@ -4,10 +4,10 @@
struct vfd_config {
bool enable;
int port;
unsigned int port_no;
bool utf_conversion;
};
HRESULT vfd_hook_init(struct vfd_config *cfg, int default_port);
HRESULT vfd_hook_init(struct vfd_config *cfg, unsigned int default_port_no);