aboutsummaryrefslogtreecommitdiff
path: root/utils/x86disasm/disasm.h
diff options
context:
space:
mode:
authorjmpoep <OriginalEntryPoint@qq.com>2023-12-07 16:51:07 +0800
committerjmpoep <OriginalEntryPoint@qq.com>2023-12-07 16:51:07 +0800
commit28008a746a31abb7909dd86cb0cd413ac8943b0b (patch)
treea30b74b8cad548048c3c1551d652828ab76fa9bd /utils/x86disasm/disasm.h
downloadvmprotect-3.5.1-28008a746a31abb7909dd86cb0cd413ac8943b0b.tar
vmprotect-3.5.1-28008a746a31abb7909dd86cb0cd413ac8943b0b.tar.gz
vmprotect-3.5.1-28008a746a31abb7909dd86cb0cd413ac8943b0b.tar.bz2
vmprotect-3.5.1-28008a746a31abb7909dd86cb0cd413ac8943b0b.zip
first commitHEADmaster
Diffstat (limited to 'utils/x86disasm/disasm.h')
-rw-r--r--utils/x86disasm/disasm.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/utils/x86disasm/disasm.h b/utils/x86disasm/disasm.h
new file mode 100644
index 0000000..0124dcc
--- /dev/null
+++ b/utils/x86disasm/disasm.h
@@ -0,0 +1,15 @@
+
+
+#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
+