mirror of
https://github.com/67-6f-64/AntiOreans-CodeDevirtualizer
synced 2026-06-08 10:18:33 +00:00
13 lines
312 B
C++
13 lines
312 B
C++
#ifndef OREANS_BASE_HPP_
|
|
#define OREANS_BASE_HPP_
|
|
|
|
#include "instruction_container.hpp"
|
|
|
|
class oreans_base
|
|
{
|
|
public:
|
|
virtual bool is_signature(instruction_container& vm_entrance);
|
|
virtual bool devirtualize(uint32_t vm_function, uint32_t vm_entry, instruction_container& vm_instructions);
|
|
};
|
|
|
|
#endif |