Hi all
how i can cal the dll function ?
many thank for example
how i can cal the dll function ?
many thank for example
-- Lua
hello = {}
hello.say = function(){
Dialog.Message("Demo", "Hello World");
}
LibraryLua.Load("AutoPlay\\Docs\\hello.dll");
package.loadlib("AutoPlay\\Docs\\hello.dll", "your_entery_point")
Comment