标签:xxx cpp gis null lua [] name register 模块化
luaL_Reg lib[] = {
{"xxx", xxx},
{NULL, NULL},
};
luaL_register(L, "LibName", lib);
这样就可以将共性的接口,封装起来
lua模块化Cpp接口
原文地址:http://www.cnblogs.com/VindyLeong/p/7120501.html