mirror of
https://gitea.tendokyu.moe/TeamTofuShop/bananatools.git
synced 2026-09-22 22:37:56 +03:00
14 lines
183 B
C
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);
|
|
|