diff options
| author | auth12 <[email protected]> | 2020-07-20 03:09:25 -0700 |
|---|---|---|
| committer | auth12 <[email protected]> | 2020-07-20 03:09:25 -0700 |
| commit | c9e48c5e9eddfe5b7a895fb3940c41ccf75d3e93 (patch) | |
| tree | 2b04471e76f7fb31aff0151b978ece9af4410a8b /client/src/injection | |
| parent | Merge pull request #1 from auth12/windows (diff) | |
| download | loader-c9e48c5e9eddfe5b7a895fb3940c41ccf75d3e93.tar.xz loader-c9e48c5e9eddfe5b7a895fb3940c41ccf75d3e93.zip | |
Syscalls.
Removed asmjit submodule and embedded it instead.
Small PE wrapper.
Diffstat (limited to 'client/src/injection')
| -rw-r--r-- | client/src/injection/mapper.h | 18 |
1 files changed, 10 insertions, 8 deletions
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<char> image; +}; + +}; // namespace mmap
\ No newline at end of file |