mirror of
https://github.com/67-6f-64/AntiOreans-CodeDevirtualizer
synced 2026-06-08 10:18:33 +00:00
22 lines
361 B
C++
22 lines
361 B
C++
#ifndef WILD_OPCODE_LABEL_HPP_
|
|
#define WILD_OPCODE_LABEL_HPP_
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct wild_opcode_label
|
|
{
|
|
wild_opcode_label(uint32_t address, uint32_t offset)
|
|
{
|
|
this->is_read = false;
|
|
|
|
this->address = address;
|
|
this->offset = offset;
|
|
}
|
|
|
|
bool is_read;
|
|
|
|
uint32_t address;
|
|
uint32_t offset;
|
|
} wild_opcode_label;
|
|
|
|
#endif |