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