mirror of
https://gitea.tendokyu.moe/TeamTofuShop/taitools.git
synced 2026-09-22 22:28:06 +03:00
11 lines
154 B
C
11 lines
154 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
#include <stdbool.h>
|
|
|
|
struct misc_config {
|
|
bool enable;
|
|
};
|
|
|
|
HRESULT misc_hook_init(const struct misc_config *cfg);
|