mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-06-06 18:31:03 +00:00
18 lines
325 B
C
18 lines
325 B
C
![]() |
/* Capstone Disassembly Engine */
|
||
|
/* By Nguyen Anh Quynh, 2018 */
|
||
|
|
||
|
#ifndef CS_EVMINSTPRINTER_H
|
||
|
#define CS_EVMINSTPRINTER_H
|
||
|
|
||
|
|
||
|
#include "capstone/capstone.h"
|
||
|
#include "../../MCInst.h"
|
||
|
#include "../../SStream.h"
|
||
|
#include "../../cs_priv.h"
|
||
|
|
||
|
struct SStream;
|
||
|
|
||
|
void EVM_printInst(MCInst *MI, struct SStream *O, void *Info);
|
||
|
|
||
|
#endif
|