如何将指针传递给LuaJIT ffi以用作out参数?

前端之家收集整理的这篇文章主要介绍了如何将指针传递给LuaJIT ffi以用作out参数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设有以下C代码
struct Foo { int dummy; }
int tryToAllocateFoo(Foo ** dest);

…如何在LuaJIT中进行以下操作?

Foo * pFoo = NULL;
tryToAllocateFoo(&pFoo);

解决方法

local ffi = require 'ffi'

ffi.cdef [[
  struct Foo { int dummy; };
  int tryToAllocateFoo(Foo ** dest);
]]

local theDll = ffi.load(dllName)

local pFoo = ffi.new 'struct Foo *[1]'
local ok = theDll.tryToAllocateFoo(pFoo)

if ok == 0 then -- Assuming it returns 0 on success
  print('dummy ==',pFoo[0].dummy)
end
原文链接:https://www.f2er.com/lua/274433.html

猜你在找的Lua相关文章