mirror of https://github.com/swig/swig.git
14 lines
530 B
Lua
14 lines
530 B
Lua
fc=require("funcptr_cpp")
|
|
catch_undef_globs() -- catch "undefined" global variables
|
|
|
|
assert(fc.addByValue(5,10) == 15)
|
|
-- These two won't work. Lua will successfully store the answer as userdata, but there is
|
|
-- no way of accessing the insides of userdata.
|
|
-- assert(fc.addByPointer(7, 9) == 16)
|
|
-- assert(fc.addByReference(8, 9) == 17)
|
|
|
|
assert(fc.call1(fc.ADD_BY_VALUE, 5, 10) == 15)
|
|
assert(fc.call2(fc.ADD_BY_POINTER, 7, 9) == 16)
|
|
assert(fc.call3(fc.ADD_BY_REFERENCE, 8, 9) == 17)
|
|
assert(fc.call1(fc.ADD_BY_VALUE_C, 2, 3) == 5)
|