1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-09 23:41:35 +01:00

14 lines
183 B
C
Raw Normal View History

#pragma once
#include <windows.h>
2024-02-06 12:34:11 +01:00
struct vfd_config {
bool enable;
2024-08-23 16:30:22 +02:00
int port;
bool utf_conversion;
2024-02-06 12:34:11 +01:00
};
2024-08-23 17:20:05 +02:00
HRESULT vfd_hook_init(struct vfd_config *cfg, int default_port);
2024-08-23 16:30:22 +02:00