Archives - Posts tagged as 'Lua'
Calling Lua function from C++July 15th / 2 Comments »
Calling Lua function from c++ is very simple. Value passing between c++ and Lua goes through stack, Lua C API provides a convenience ways for ... Continue
calling c++ function from Lua, implement sleep functionJuly 6th / No Comments »
You can't call c function directly from Lua, you have to create a wrapper function that allows calling from Lua. In this post, shows a ... Continue
Accessing Lua global variables from c++June 21st / 2 Comments »
Calling Lua scripts from c++'s example was written in post How to embed Lua 5.1 in C++. Now, let us look at how to access ... Continue
How to embed Lua 5.1 in C++June 7th / 4 Comments »
Lua, is a scripting language providing dynamic data structures, maths, io and string manipulations just like any interprete language such as Bash, Python, Ruby etc. ... Continue
