xref: /aosp_15_r20/external/capstone/MCDisassembler.h (revision 9a0e4156d50a75a99ec4f1653a0e9602a5d45c18)
1 /* Capstone Disassembly Engine */
2 /* By Nguyen Anh Quynh <[email protected]>, 2013-2015 */
3 
4 #ifndef CS_MCDISASSEMBLER_H
5 #define CS_MCDISASSEMBLER_H
6 
7 typedef enum DecodeStatus {
8 	MCDisassembler_Fail = 0,
9 	MCDisassembler_SoftFail = 1,
10 	MCDisassembler_Success = 3,
11 } DecodeStatus;
12 
13 #endif
14 
15