Home | History | Annotate | Download | only in capstone
      1 /* Capstone Disassembly Engine */
      2 /* By Nguyen Anh Quynh <aquynh (at) gmail.com>, 2013-2014 */
      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