segatools/board/vfd.h
2024-08-23 17:20:05 +02:00

14 lines
183 B
C

#pragma once
#include <windows.h>
struct vfd_config {
bool enable;
int port;
bool utf_conversion;
};
HRESULT vfd_hook_init(struct vfd_config *cfg, int default_port);