mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
11 lines
376 B
Text
11 lines
376 B
Text
local ffi = require("@lune/ffi")
|
|
local lib = require("../utils/compile")("./tests/ffi/external_closure/lib.c")
|
|
local c = ffi.c
|
|
|
|
-- Create closure
|
|
local helloWorld = c.fn({}, c.void):closure(function()
|
|
print("Hello world in lua closure!")
|
|
end)
|
|
|
|
local callHelloWorld = c.fn({ c.void:ptr() }, c.void):callable(lib:find("call_hello_world"))
|
|
callHelloWorld(nil, helloWorld:ref())
|