segatools/board/vfd.h

14 lines
165 B
C
Raw Normal View History

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