mirror of
https://github.com/67-6f-64/AntiOreans-CodeDevirtualizer
synced 2026-06-08 10:18:33 +00:00
13 lines
337 B
C++
13 lines
337 B
C++
#include "oreans_base.hpp"
|
|
|
|
bool oreans_base::is_signature(instruction_container& vm_entrance)
|
|
{
|
|
/* Placeholder for virtual function */
|
|
return false;
|
|
}
|
|
|
|
bool oreans_base::devirtualize(uint32_t vm_function, uint32_t vm_entry, instruction_container& vm_instructions)
|
|
{
|
|
/* Placeholder for virtual function */
|
|
return false;
|
|
} |