FFI: Add ffi.load() and ffi.C default namespace.

This commit is contained in:
Mike Pall
2011-01-10 03:43:18 +01:00
parent d215747fd5
commit ddf6596333
11 changed files with 435 additions and 15 deletions

View File

@@ -153,6 +153,7 @@ ERRDEF(FFI_NUMARG, "wrong number of arguments for function call")
ERRDEF(FFI_BADMEMBER, LUA_QS " has no member named " LUA_QS)
ERRDEF(FFI_BADIDX, LUA_QS " cannot be indexed")
ERRDEF(FFI_WRCONST, "attempt to write to constant location")
ERRDEF(FFI_NODECL, "missing declaration for symbol " LUA_QS)
ERRDEF(FFI_NYIPACKBIT, "NYI: packed bit fields")
ERRDEF(FFI_NYICALL, "NYI: cannot call this C function (yet)")
#endif