taitools/idmac/idmac.h

16 lines
253 B
C
Raw Permalink Normal View History

2024-02-06 08:24:58 +00:00
#pragma once
#include <windows.h>
2024-02-10 22:48:10 +00:00
#include "idmac/jvs.h"
2024-02-06 08:24:58 +00:00
2024-02-10 22:48:10 +00:00
struct idmac_config {
2024-02-06 08:24:58 +00:00
struct jvs_config jvs;
};
2024-02-10 22:48:10 +00:00
HRESULT idmac_hook_init(
const struct idmac_config *cfg,
2024-02-06 08:24:58 +00:00
jvs_provider_t jvs);
2024-02-20 07:17:12 +00:00
void idmac_hook_table_apply(HMODULE target);