mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-14 07:23:26 +00:00
* added some code * improvement * visit * added scanner code * update * fixed naming * added const * added type casting * added file * patch * added unlikely * added in module scanner * fixing test * fix * remove * improvement * fix * Update source/utility/elf_pattern_scan.cpp Co-authored-by: Saikari <lin@sz.cn.eu.org> * rev * fix * patch * decomposed method * fix * fix * improvement * fix * fix * commented stuff --------- Co-authored-by: Saikari <lin@sz.cn.eu.org>
16 lines
282 B
C++
16 lines
282 B
C++
//
|
|
// Created by Vladislav on 01.01.2026.
|
|
//
|
|
|
|
#pragma once
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
namespace omath
|
|
{
|
|
struct SectionScanResult final
|
|
{
|
|
std::uintptr_t virtual_base_addr;
|
|
std::uintptr_t raw_base_addr;
|
|
std::ptrdiff_t target_offset;
|
|
};
|
|
} |