mirror of
https://gitea.tendokyu.moe/TeamTofuShop/taitools.git
synced 2026-09-22 22:28:06 +03:00
15 lines
267 B
C
15 lines
267 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
struct cert_config {
|
|
bool enable;
|
|
wchar_t path[MAX_PATH];
|
|
};
|
|
|
|
HRESULT cert_hook_init(const struct cert_config *cfg);
|
|
void cert_hook_insert_hooks(HMODULE target); |