llvm-toolchain-10/lldb/bindings/lua.swig

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
422 B
Plaintext
Raw Normal View History

2022-07-16 17:39:34 +08:00
/*
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 <std_string.i>
%include "./lua/lua-typemaps.swig"
%include "./macros.swig"
%include "./headers.swig"
%{
using namespace lldb_private;
using namespace lldb;
%}
%include "./interfaces.swig"