2023-01-03 05:35:53 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
2023-07-11 05:21:36 +02:00
|
|
|
struct taiko_network_config {
|
2023-01-03 05:35:53 +01:00
|
|
|
bool enable;
|
|
|
|
};
|
|
|
|
|
2023-07-11 05:21:36 +02:00
|
|
|
HRESULT network_hook_init(const struct taiko_network_config *cfg);
|