Path: blob/master/libs/capstone/arch/X86/X86Disassembler.h
4389 views
//===-- X86Disassembler.h - Disassembler for x86 and x86_64 -----*- C++ -*-===//1//2// The LLVM Compiler Infrastructure3//4// This file is distributed under the University of Illinois Open Source5// License. See LICENSE.TXT for details.6//7//===----------------------------------------------------------------------===//89/* Capstone Disassembly Engine */10/* By Nguyen Anh Quynh <[email protected]>, 2013-2019 */1112#ifndef CS_X86_DISASSEMBLER_H13#define CS_X86_DISASSEMBLER_H1415#include "capstone/capstone.h"1617#include "../../MCInst.h"1819#include "../../MCRegisterInfo.h"20#include "X86DisassemblerDecoderCommon.h"2122bool X86_getInstruction(csh handle, const uint8_t *code, size_t code_len,23MCInst *instr, uint16_t *size, uint64_t address, void *info);2425void X86_init(MCRegisterInfo *MRI);2627#endif282930