taitools/platform/syscfg.h
2024-02-06 03:24:58 -05:00

13 lines
224 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stdint.h>
struct syscfg_config {
bool enable;
uint32_t log_level;
};
HRESULT syscfg_hook_init(const struct syscfg_config *cfg, const uint32_t gid);