导航

上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 49 下一页

2015年9月1日

摘要: 步骤: 1. 安装MySQL数据库 2. 项目属性页->C/C++->常规->附加包含目录:xxx\MySQL Server 5.6\include 3. 项目属性页->链接器->常规->附加库目录:xxx\MySQL Server 5.6\lib 4. 项目属性页->链接器... 阅读全文

posted @ 2015-09-01 14:23 ggzone 阅读(557) 评论(0) 推荐(0) 编辑

2015年8月5日

摘要: function n_serialize(data) if type(data)=="number" then io.write(data,"\n") elseif type(data)=="string" then io.write(string.format(... 阅读全文

posted @ 2015-08-05 10:37 ggzone 阅读(121) 评论(0) 推荐(0) 编辑

摘要: function n_serialize(data) if type(data)=="number" then io.write(data,"\n") elseif type(data)=="string" then io.write(string.format("%q\n",data)) el... 阅读全文

posted @ 2015-08-05 10:36 ggzone 阅读(270) 评论(0) 推荐(0) 编辑

2015年8月4日

摘要: C++代码:// LuaAndC.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include using namespace std; extern "C" { #include "lua.h" #includ... 阅读全文

posted @ 2015-08-04 13:37 ggzone 阅读(189) 评论(0) 推荐(0) 编辑

摘要: C++代码:// LuaAndC.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include using namespace std; extern "C" { #include "lua... 阅读全文

posted @ 2015-08-04 13:37 ggzone 阅读(447) 评论(0) 推荐(0) 编辑

摘要: C++代码:// LuaAndC.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include using namespace std; extern "C" { #include "... 阅读全文

posted @ 2015-08-04 11:38 ggzone 阅读(273) 评论(0) 推荐(0) 编辑

摘要: C++代码:// LuaAndC.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include using namespace std; extern "C" { #include "lua.h" #inc... 阅读全文

posted @ 2015-08-04 11:37 ggzone 阅读(1066) 评论(0) 推荐(0) 编辑

摘要: C++代码:// LuaAndC.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include using namespace std; extern "C" { #include "... 阅读全文

posted @ 2015-08-04 10:34 ggzone 阅读(196) 评论(0) 推荐(0) 编辑

摘要: C++代码:// LuaAndC.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include using namespace std; extern "C" { #include "lua.h" #inc... 阅读全文

posted @ 2015-08-04 10:33 ggzone 阅读(1939) 评论(0) 推荐(0) 编辑

2015年8月3日

摘要: 编译静态库:1.新建Win32控制台应用程序Lua5.3,下一步,应用程序类型选择:DLL,空项目,完成。2.项目名右键属性,配置属性--项目默认值--配置类型:静态库(.lib)3.头文件上右键添加现有项,添加所有.h文件4.源文件上右键添加现有项,添加所有.c文件... 阅读全文

posted @ 2015-08-03 16:42 ggzone 阅读(113) 评论(0) 推荐(0) 编辑

上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 49 下一页