bananatools/board/vfd.h

14 lines
183 B
C
Raw Normal View History

2023-09-18 08:00:09 +00:00
#pragma once
#include <windows.h>
2024-10-06 18:37:20 +00:00
struct vfd_config {
bool enable;
int port;
bool utf_conversion;
};
HRESULT vfd_hook_init(struct vfd_config *cfg, int default_port);