Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
15 lines
286 B
C
15 lines
286 B
C
/* Capstone Disassembly Engine */
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
|
|
|
|
#ifndef CS_MCDISASSEMBLER_H
|
|
#define CS_MCDISASSEMBLER_H
|
|
|
|
typedef enum DecodeStatus {
|
|
MCDisassembler_Fail = 0,
|
|
MCDisassembler_SoftFail = 1,
|
|
MCDisassembler_Success = 3,
|
|
} DecodeStatus;
|
|
|
|
#endif
|
|
|