You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
317 B
12 lines
317 B
3 years ago
|
#pragma once
|
||
|
#include <transform.hpp>
|
||
|
#include <vmp2.hpp>
|
||
|
|
||
|
namespace vm
|
||
|
{
|
||
|
namespace calc_jmp
|
||
|
{
|
||
|
bool get( zydis_routine_t &vm_entry, zydis_routine_t &calc_jmp );
|
||
|
std::optional< vmp2::exec_type_t > get_advancement( const zydis_routine_t &calc_jmp );
|
||
|
} // namespace calc_jmp
|
||
|
} // namespace vm
|