You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 26, 2022. It is now read-only.
Philipp Janda edited this page Mar 9, 2015
·
2 revisions
luaL_checkversion
The Lua 5.2 function luaL_checkversion makes sure that there is only
one Lua library linked to an extension module, and that this library
has the same version that was used during compilation of the extension
module.
The compatiblity implementation is empty, so it doesn't do either of
those checks. It simply makes your code compile if you use this
function in your extension module code.