mirror of
https://github.com/67-6f-64/AntiOreans-CodeDevirtualizer
synced 2026-06-08 10:18:33 +00:00
13 lines
214 B
C++
13 lines
214 B
C++
#ifndef FISH_HANDLER_MNEMONICS_HPP_
|
|
#define FISH_HANDLER_MNEMONICS_HPP_
|
|
|
|
#include <stdint.h>
|
|
|
|
enum fish_handler_mnemonics : uint16_t
|
|
{
|
|
FISH_MNEMONIC_UNKNOWN = 0x8000,
|
|
|
|
FISH_MNEMONIC_ALIGN,
|
|
};
|
|
|
|
#endif |