segatools/common/board/vfd.h
2025-04-17 19:40:40 +02:00

14 lines
207 B
C

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