mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-14 08:07:37 +01:00
18 lines
307 B
C
18 lines
307 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(
|
|
const char *target,
|
|
struct hook_symbol *syms,
|
|
size_t nsyms
|
|
); |