blob: 3ab120b0044bb6a8793f90999bd35177c6c54b01 (
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);
|