2019-08-30 23:04:39 +00:00
|
|
|
#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);
|
|
|
|
|