mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-07-26 06:53:56 +00:00
Add missing thirdparty files
This commit is contained in:
28
thirdparty/capstone/arch/X86/X86Disassembler.h
vendored
Normal file
28
thirdparty/capstone/arch/X86/X86Disassembler.h
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
//===-- X86Disassembler.h - Disassembler for x86 and x86_64 -----*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
/* Capstone Disassembly Engine */
|
||||
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */
|
||||
|
||||
#ifndef CS_X86_DISASSEMBLER_H
|
||||
#define CS_X86_DISASSEMBLER_H
|
||||
|
||||
#include "capstone/capstone.h"
|
||||
|
||||
#include "../../MCInst.h"
|
||||
|
||||
#include "../../MCRegisterInfo.h"
|
||||
#include "X86DisassemblerDecoderCommon.h"
|
||||
|
||||
bool X86_getInstruction(csh handle, const uint8_t *code, size_t code_len,
|
||||
MCInst *instr, uint16_t *size, uint64_t address, void *info);
|
||||
|
||||
void X86_init(MCRegisterInfo *MRI);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user