首页 > 其他 > 详细

Lua 与C交互 第二篇

时间:2014-07-01 07:49:53      阅读:322      评论:0      收藏:0      [点我收藏+]

使用静态链接的方式


#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#ifdef __cplusplus
extern "C" {
#endif

#include "lua/include/lua.h"
#include "lua/include/lauxlib.h"
#include "lua/include/lualib.h"

#pragma comment (lib, "lua/lib/lua5.2.3-static.lib")

#ifdef __cplusplus
}
#endif

int main(void) {
	char buffer[256];
	int error;
	lua_State *L = luaL_newstate(); /*打开lua */
	luaL_openlibs(L); /*打开标准库*/

	while(fgets(buffer,sizeof(buffer),stdin)!=NULL) {
		error = luaL_loadbuffer(L,buffer,strlen(buffer),"line") || lua_pcall(L,0,0,0);

		if(error) {
			fprintf(stderr,"%s", lua_tostring(L,-1));
			lua_pop(L,1);/*从栈中弹出错误信息*/
		}
	}

	lua_close(L);
	return 0;
}


Lua 与C交互 第二篇,布布扣,bubuko.com

Lua 与C交互 第二篇

原文:http://blog.csdn.net/haifengzhilian/article/details/35992915

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!