I have a DLL with an exported function with signature:
bool lib_initialise(int argc, char **argv);
What is the correct binding for LuaRT ? Is the following ok?
mydll.lib_initialise = '(ip)B'
Since I do not need to pass any specific argument,
what is the syntax to call lib_initialise() passing argc=0 and argv=null?