Lua 5.3 动态加载C模块

VS2015 开发环境:
#pragma once
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
static int sum(int x, int y)
{
	return x + y;
}

static int lua_sum(lua_State* L)
{
	int x = lua_tointeger(L, -1);
	int y = lua_tointeger(L, -2);
	int result = sum(x, y);
	lua_pushinteger(L, result);
	return 1;
}

static const luaL_Reg lua_xk_lib[] =
{
	{ "sum",lua_sum},
	{ NULL,NULL }
};

extern  __declspec(dllexport) int luaopen_LuaLibrary(lua_State* L)
{
	luaL_newlib(L, lua_xk_lib);
	return 1;
}

如果报错:multiple Lua VMs detected,现有解决办法就是:把解释器重新编译为以动态调用Lua共享库的方式,这样就解决了

lua代码如下

package.path='F:/2018_Server/Test/src/Lua/module/?.lua' --此处至关重要,千万不要写成*.dll,费了我2个小时的功力啊 
package.cpath='F:/2018_Server/Test/src/Lua/module/?.dll'     
local m= require "LuaLibrary"

a=25 b=15
print(a..":"..b)
c=m.sum(a,b)
print(c)

Lua 5.3 动态加载C模块_第1张图片


你可能感兴趣的:(Lua)