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