blob: 0d9026e8f1bc1aeb3fdac1f0b654172fb44ad3cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
namespace mmap {
struct mapper_data_t {
size_t image_size;
uint32_t entry;
uint32_t base;
std::string imports;
std::vector<char> image;
};
}; // namespace mmap
|