1
0
mirror of synced 2024-11-27 23:10:49 +01:00
bananatools/hooklib/procaddr.h
2023-09-18 03:58:32 -04:00

20 lines
332 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stdint.h>
#include "hook/table.h"
struct proc_addr_table {
const char *name;
size_t nsyms;
struct hook_symbol *syms;
};
HRESULT proc_addr_table_push(
HMODULE loader_mod,
const char *target,
struct hook_symbol *syms,
size_t nsyms
);