1
0
mirror of synced 2025-01-08 07:51:34 +01:00
bananatools/hooklib/procaddr.h

20 lines
332 B
C
Raw Normal View History

2023-09-18 09:58:32 +02:00
#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
);