From c9e48c5e9eddfe5b7a895fb3940c41ccf75d3e93 Mon Sep 17 00:00:00 2001 From: auth12 <67507608+auth12@users.noreply.github.com> Date: Mon, 20 Jul 2020 03:09:25 -0700 Subject: Syscalls. Removed asmjit submodule and embedded it instead. Small PE wrapper. --- client/src/injection/mapper.h | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'client/src/injection') diff --git a/client/src/injection/mapper.h b/client/src/injection/mapper.h index 27541c4..0d9026e 100644 --- a/client/src/injection/mapper.h +++ b/client/src/injection/mapper.h @@ -1,11 +1,13 @@ #pragma once - namespace mmap { - struct data { - size_t image_size; - uint32_t entry; - uint32_t base; - std::string imports; - }; -}; \ No newline at end of file + +struct mapper_data_t { + size_t image_size; + uint32_t entry; + uint32_t base; + std::string imports; + std::vector image; +}; + +}; // namespace mmap \ No newline at end of file -- cgit v1.2.3