1 // Copyright Daniel Wallin 2009. Use, modification and distribution is
2 // subject to the Boost Software License, Version 1.0. (See accompanying
3 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 #include <luabind/luabind.hpp>
8 void raw_function(lua_State
* L
)
11 void raw_function2(int, lua_State
* L
, int)
14 void test_main(lua_State
* L
)
16 using namespace luabind
;
19 def("raw_function", &raw_function
),
20 def("raw_function2", &raw_function2
)
25 "raw_function2(1,2)\n"