mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-05 00:49:43 +00:00
fe27e8ee80
This reverts commit 640d0ba8760051afc002c672121c6989517fc94e.
19 lines
338 B
Plaintext
19 lines
338 B
Plaintext
/*
|
|
lldb.swig
|
|
|
|
This is the input file for SWIG, to create the appropriate C++ wrappers and
|
|
functions for various scripting languages, to enable them to call the
|
|
liblldb Script Bridge functions.
|
|
*/
|
|
|
|
%module lldb
|
|
|
|
%include "./headers.swig"
|
|
|
|
%{
|
|
using namespace lldb_private;
|
|
using namespace lldb;
|
|
%}
|
|
|
|
%include "./interfaces.swig"
|