mirror of
https://github.com/67-6f-64/AntiOreans-CodeDevirtualizer
synced 2026-06-08 10:18:33 +00:00
20 lines
373 B
C++
20 lines
373 B
C++
#ifndef EAGLE_HPP_
|
|
#define EAGLE_HPP_
|
|
|
|
#include "wild_hybrid_base.hpp"
|
|
|
|
#include "fish.hpp"
|
|
#include "dolphin.hpp"
|
|
|
|
class eagle : public wild_hybrid_base<fish, dolphin>
|
|
{
|
|
public:
|
|
bool is_signature(instruction_container& vm_entrance);
|
|
bool devirtualize(uint32_t vm_function, uint32_t vm_entry, instruction_container& vm_instructions);
|
|
};
|
|
|
|
/*
|
|
|
|
*/
|
|
|
|
#endif |