]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/lldb/bindings/lua.swig
dts: Import DTS from Linux 5.6
[FreeBSD/FreeBSD.git] / contrib / llvm-project / lldb / bindings / lua.swig
1 /*
2    lldb.swig
3
4    This is the input file for SWIG, to create the appropriate C++ wrappers and
5    functions for various scripting languages, to enable them to call the
6    liblldb Script Bridge functions.
7 */
8
9 %module lldb
10
11 %include <std_string.i>
12 %include "./lua/lua-typemaps.swig"
13 %include "./macros.swig"
14 %include "./headers.swig"
15
16 %{
17 using namespace lldb_private;
18 using namespace lldb;
19 %}
20
21 %include "./interfaces.swig"