mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2025-08-29 10:43:55 +02:00
13 lines
285 B
C
13 lines
285 B
C
/* 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
|