taitools/platform/syscfg.h

13 lines
224 B
C
Raw Permalink Normal View History

2024-02-06 08:24:58 +00:00
#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);