t8-mod/source/proxy-dll/definitions/discovery.hpp
2023-03-06 12:40:07 -08:00

22 lines
343 B
C++

#pragma once
size_t operator"" _d(const char* str, size_t len);
namespace discovery
{
enum sig_relation
{
SIG_RELEVANCE_IMPOSSIBLE = -1,
SIG_RELEVANCE_DIRECT_HIT = 0,
SIG_RELEVANCE_LEA_FROM = 1,
SIG_RELEVANCE_JMP_FROM = 2
};
struct sig_instance
{
const char* name;
const char* sig;
size_t dist;
sig_relation relv;
};
}