blob: dec38a1b8750d4b4058bd2e63ffa25f8f61a80c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include <stdint.h>
#include <stdbool.h>
int transform_dis_main(const void *restrict code_ptr,
void **restrict rewritten_ptr_ptr,
uintptr_t pc_patch_start,
uintptr_t pc_patch_end,
struct arch_dis_ctx initial_arch_ctx,
int *offset_by_pcdiff);
|