FILE / ScuroNeko/VMProtect

utils/x86disasm/disasm.h

Исходный файл и его история в репозитории.
FILE d70e027f9204c318e0190d336d9e0baa6048b197
Files
VMProtect/utils/x86disasm/disasm.h
T
VNGhostMans 5ec92ee05e first commit
Version 3.x.x
2023-05-14 20:21:09 +07:00

16 lines
229 B
C++

#ifndef DISASM_H
#define DISASM_H
#include <string>
#define GEN_INSN_OKAY 0
#define GEN_INSN_IOERROR 1
#define GEN_INSN_ERROR 2
int GenerateInstructions(const std::string & out_filename, bool x64);
#endif