mirror of
https://gitea.tendokyu.moe/TeamTofuShop/taitools.git
synced 2026-09-22 22:28:06 +03:00
14 lines
246 B
C
14 lines
246 B
C
#pragma once
|
|
#include <windows.h>
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
struct syscfg_config {
|
|
bool enable;
|
|
uint32_t log_level;
|
|
uint32_t country;
|
|
};
|
|
|
|
HRESULT syscfg_hook_init(const struct syscfg_config *cfg, const uint32_t gid);
|