• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Capstone Disassembly Engine */
2 /* By Travis Finkenauer <tmfinken@gmail.com>, 2018 */
3 
4 #ifndef CS_EVM_MODULE_H
5 #define CS_EVM_MODULE_H
6 
7 #include "../../utils.h"
8 
9 cs_err EVM_global_init(cs_struct *ud);
10 cs_err EVM_option(cs_struct *handle, cs_opt_type type, size_t value);
11 
12 #endif
13