aboutsummaryrefslogtreecommitdiffstats
path: root/capstone/MCDisassembler.h
blob: 580962607274f623d0a30b88ce98024e96a0b834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Capstone Disassembly Engine */
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */

#ifndef CS_MCDISASSEMBLER_H
#define CS_MCDISASSEMBLER_H

typedef enum DecodeStatus {
	MCDisassembler_Fail = 0,
	MCDisassembler_SoftFail = 1,
	MCDisassembler_Success = 3,
} DecodeStatus;

#endif