亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? luaconf.h

?? 支持中文變量的lua,基于lua 5.1.1源碼修改而成
?? H
?? 第 1 頁 / 共 2 頁
字號:
/*** $Id: luaconf.h,v 1.82 2006/04/10 18:27:23 roberto Exp $** Configuration file for Lua** See Copyright Notice in lua.h*/#ifndef lconfig_h#define lconfig_h#include <limits.h>#include <stddef.h>/*** ==================================================================** Search for "@@" to find all configurable definitions.** ===================================================================*//*@@ LUA_ANSI controls the use of non-ansi features.** CHANGE it (define it) if you want Lua to avoid the use of any** non-ansi feature or library.*/#if defined(__STRICT_ANSI__)#define LUA_ANSI#endif#if !defined(LUA_ANSI) && defined(_WIN32)#define LUA_WIN#endif#if defined(LUA_USE_LINUX)#define LUA_USE_POSIX#define LUA_USE_DLOPEN		/* needs an extra library: -ldl */#define LUA_USE_READLINE	/* needs some extra libraries */#endif#if defined(LUA_USE_MACOSX)#define LUA_USE_POSIX#define LUA_DL_DYLD		/* does not need extra library */#endif/*@@ LUA_USE_POSIX includes all functionallity listed as X/Open System@* Interfaces Extension (XSI).** CHANGE it (define it) if your system is XSI compatible.*/#if defined(LUA_USE_POSIX)#define LUA_USE_MKSTEMP#define LUA_USE_ISATTY#define LUA_USE_POPEN#define LUA_USE_ULONGJMP#endif/*@@ LUA_PATH and LUA_CPATH are the names of the environment variables that@* Lua check to set its paths.@@ LUA_INIT is the name of the environment variable that Lua@* checks for initialization code.** CHANGE them if you want different names.*/#define LUA_PATH        "LUA_PATH"#define LUA_CPATH       "LUA_CPATH"#define LUA_INIT	"LUA_INIT"/*@@ LUA_PATH_DEFAULT is the default path that Lua uses to look for@* Lua libraries.@@ LUA_CPATH_DEFAULT is the default path that Lua uses to look for@* C libraries.** CHANGE them if your machine has a non-conventional directory** hierarchy or if you want to install your libraries in** non-conventional directories.*/#if defined(_WIN32)/*** In Windows, any exclamation mark ('!') in the path is replaced by the** path of the directory of the executable file of the current process.*/#define LUA_LDIR	"!\\lua\\"#define LUA_CDIR	"!\\"#define LUA_PATH_DEFAULT  \		".\\?.lua;"  LUA_LDIR"?.lua;"  LUA_LDIR"?\\init.lua;" \		             LUA_CDIR"?.lua;"  LUA_CDIR"?\\init.lua"#define LUA_CPATH_DEFAULT \	".\\?.dll;"  LUA_CDIR"?.dll;" LUA_CDIR"loadall.dll"#else#define LUA_ROOT	"/usr/local/"#define LUA_LDIR	LUA_ROOT "share/lua/5.1/"#define LUA_CDIR	LUA_ROOT "lib/lua/5.1/"#define LUA_PATH_DEFAULT  \		"./?.lua;"  LUA_LDIR"?.lua;"  LUA_LDIR"?/init.lua;" \		            LUA_CDIR"?.lua;"  LUA_CDIR"?/init.lua"#define LUA_CPATH_DEFAULT \	"./?.so;"  LUA_CDIR"?.so;" LUA_CDIR"loadall.so"#endif/*@@ LUA_DIRSEP is the directory separator (for submodules).** CHANGE it if your machine does not use "/" as the directory separator** and is not Windows. (On Windows Lua automatically uses "\".)*/#if defined(_WIN32)#define LUA_DIRSEP	"\\"#else#define LUA_DIRSEP	"/"#endif/*@@ LUA_PATHSEP is the character that separates templates in a path.@@ LUA_PATH_MARK is the string that marks the substitution points in a@* template.@@ LUA_EXECDIR in a Windows path is replaced by the executable's@* directory.@@ LUA_IGMARK is a mark to ignore all before it when bulding the@* luaopen_ function name.** CHANGE them if for some reason your system cannot use those** characters. (E.g., if one of those characters is a common character** in file/directory names.) Probably you do not need to change them.*/#define LUA_PATHSEP	";"#define LUA_PATH_MARK	"?"#define LUA_EXECDIR	"!"#define LUA_IGMARK	"-"/*@@ LUA_INTEGER is the integral type used by lua_pushinteger/lua_tointeger.** CHANGE that if ptrdiff_t is not adequate on your machine. (On most** machines, ptrdiff_t gives a good choice between int or long.)*/#define LUA_INTEGER	ptrdiff_t/*@@ LUA_API is a mark for all core API functions.@@ LUALIB_API is a mark for all standard library functions.** CHANGE them if you need to define those functions in some special way.** For instance, if you want to create one Windows DLL with the core and** the libraries, you may want to use the following definition (define** LUA_BUILD_AS_DLL to get it).*/#if defined(LUA_BUILD_AS_DLL)#if defined(LUA_CORE) || defined(LUA_LIB)#define LUA_API __declspec(dllexport)#else#define LUA_API __declspec(dllimport)#endif#else#define LUA_API		extern#endif/* more often than not the libs go together with the core */#define LUALIB_API	LUA_API/*@@ LUAI_FUNC is a mark for all extern functions that are not to be@* exported to outside modules.@@ LUAI_DATA is a mark for all extern (const) variables that are not to@* be exported to outside modules.** CHANGE them if you need to mark them in some special way. Elf/gcc** (versions 3.2 and later) mark them as "hidden" to optimize access** when Lua is compiled as a shared library.*/#if defined(luaall_c)#define LUAI_FUNC	static#define LUAI_DATA	/* empty */#elif defined(__GNUC__) && ((__GNUC__*100 + __GNUC_MINOR__) >= 302) && \      defined(__ELF__)#define LUAI_FUNC	__attribute__((visibility("hidden"))) extern#define LUAI_DATA	LUAI_FUNC#else#define LUAI_FUNC	extern#define LUAI_DATA	extern#endif/*@@ LUA_QL describes how error messages quote program elements.** CHANGE it if you want a different appearance.*/#define LUA_QL(x)	"'" x "'"#define LUA_QS		LUA_QL("%s")/*@@ LUA_IDSIZE gives the maximum size for the description of the source@* of a function in debug information.** CHANGE it if you want a different size.*/#define LUA_IDSIZE	60/*** {==================================================================** Stand-alone configuration** ===================================================================*/#if defined(lua_c) || defined(luaall_c)/*@@ lua_stdin_is_tty detects whether the standard input is a 'tty' (that@* is, whether we're running lua interactively).** CHANGE it if you have a better definition for non-POSIX/non-Windows** systems.*/#if defined(LUA_USE_ISATTY)#include <unistd.h>#define lua_stdin_is_tty()	isatty(0)#elif defined(LUA_WIN)#include <io.h>#include <stdio.h>#define lua_stdin_is_tty()	_isatty(_fileno(stdin))#else#define lua_stdin_is_tty()	1  /* assume stdin is a tty */#endif/*@@ LUA_PROMPT is the default prompt used by stand-alone Lua.@@ LUA_PROMPT2 is the default continuation prompt used by stand-alone Lua.** CHANGE them if you want different prompts. (You can also change the** prompts dynamically, assigning to globals _PROMPT/_PROMPT2.)*/#define LUA_PROMPT		"> "#define LUA_PROMPT2		">> "/*@@ LUA_PROGNAME is the default name for the stand-alone Lua program.** CHANGE it if your stand-alone interpreter has a different name and** your system is not able to detect that name automatically.*/#define LUA_PROGNAME		"lua"/*@@ LUA_MAXINPUT is the maximum length for an input line in the@* stand-alone interpreter.** CHANGE it if you need longer lines.*/#define LUA_MAXINPUT	512/*@@ lua_readline defines how to show a prompt and then read a line from@* the standard input.@@ lua_saveline defines how to "save" a read line in a "history".@@ lua_freeline defines how to free a line read by lua_readline.** CHANGE them if you want to improve this functionality (e.g., by using** GNU readline and history facilities).*/#if defined(LUA_USE_READLINE)#include <stdio.h>#include <readline/readline.h>#include <readline/history.h>#define lua_readline(L,b,p)	((void)L, ((b)=readline(p)) != NULL)#define lua_saveline(L,idx) \	if (lua_strlen(L,idx) > 0)  /* non-empty line? */ \	  add_history(lua_tostring(L, idx));  /* add it to history */#define lua_freeline(L,b)	((void)L, free(b))#else#define lua_readline(L,b,p)	\	((void)L, fputs(p, stdout), fflush(stdout),  /* show prompt */ \	fgets(b, LUA_MAXINPUT, stdin) != NULL)  /* get line */#define lua_saveline(L,idx)	{ (void)L; (void)idx; }#define lua_freeline(L,b)	{ (void)L; (void)b; }#endif#endif/* }================================================================== *//*@@ LUAI_GCPAUSE defines the default pause between garbage-collector cycles@* as a percentage.** CHANGE it if you want the GC to run faster or slower (higher values** mean larger pauses which mean slower collection.) You can also change** this value dynamically.*/#define LUAI_GCPAUSE	200  /* 200% (wait memory to double before next GC) *//*@@ LUAI_GCMUL defines the default speed of garbage collection relative to@* memory allocation as a percentage.** CHANGE it if you want to change the granularity of the garbage** collection. (Higher values mean coarser collections. 0 represents** infinity, where each step performs a full collection.) You can also** change this value dynamically.*/#define LUAI_GCMUL	200 /* GC runs 'twice the speed' of memory allocation *//*@@ LUA_COMPAT_GETN controls compatibility with old getn behavior.** CHANGE it (define it) if you want exact compatibility with the** behavior of setn/getn in Lua 5.0.*/#undef LUA_COMPAT_GETN/*@@ LUA_COMPAT_LOADLIB controls compatibility about global loadlib.** CHANGE it to undefined as soon as you do not need a global 'loadlib'** function (the function is still available as 'package.loadlib').*/#undef LUA_COMPAT_LOADLIB/*@@ LUA_COMPAT_VARARG controls compatibility with old vararg feature.** CHANGE it to undefined as soon as your programs use only '...' to** access vararg parameters (instead of the old 'arg' table).*/#define LUA_COMPAT_VARARG/*@@ LUA_COMPAT_MOD controls compatibility with old math.mod function.** CHANGE it to undefined as soon as your programs use 'math.fmod' or** the new '%' operator instead of 'math.mod'.*/#define LUA_COMPAT_MOD/*@@ LUA_COMPAT_LSTR controls compatibility with old long string nesting@* facility.** CHANGE it to 2 if you want the old behaviour, or undefine it to turn** off the advisory error when nesting [[...]].*/#define LUA_COMPAT_LSTR		1/*@@ LUA_COMPAT_GFIND controls compatibility with old 'string.gfind' name.** CHANGE it to undefined as soon as you rename 'string.gfind' to** 'string.gmatch'.*/#define LUA_COMPAT_GFIND/*@@ LUA_COMPAT_OPENLIB controls compatibility with old 'luaL_openlib'@* behavior.** CHANGE it to undefined as soon as you replace to 'luaL_registry'** your uses of 'luaL_openlib'*/#define LUA_COMPAT_OPENLIB/*@@ luai_apicheck is the assert macro used by the Lua-C API.** CHANGE luai_apicheck if you want Lua to perform some checks in the** parameters it gets from API calls. This may slow down the interpreter** a bit, but may be quite useful when debugging C code that interfaces** with Lua. A useful redefinition is to use assert.h.*/#if defined(LUA_USE_APICHECK)#include <assert.h>#define luai_apicheck(L,o)	{ (void)L; assert(o); }#else#define luai_apicheck(L,o)	{ (void)L; }#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
夜夜嗨av一区二区三区四季av | 欧美精品一区二区三区蜜桃视频| 91在线无精精品入口| 国产69精品一区二区亚洲孕妇| 久久精品国产一区二区| 激情久久久久久久久久久久久久久久| 偷拍与自拍一区| 久久电影国产免费久久电影| 美女尤物国产一区| 99麻豆久久久国产精品免费| 国产精品1024久久| aaa亚洲精品| 欧美午夜精品久久久久久孕妇| 91高清视频免费看| 91精品国产综合久久香蕉的特点| 欧美一级在线免费| 国产亚洲一区二区在线观看| 中文字幕一区二区5566日韩| 亚洲美女在线国产| 婷婷开心激情综合| 极品少妇xxxx精品少妇偷拍| av电影天堂一区二区在线观看| 色先锋资源久久综合| 制服.丝袜.亚洲.中文.综合| 久久先锋资源网| 伊人夜夜躁av伊人久久| 男男成人高潮片免费网站| 国产精品综合二区| 欧美在线综合视频| 久久综合九色综合久久久精品综合| 欧美国产欧美亚州国产日韩mv天天看完整 | 精品国产乱码久久久久久图片| 国产亚洲va综合人人澡精品 | 亚洲3atv精品一区二区三区| 麻豆国产91在线播放| 99久久精品免费观看| 欧美精品亚洲一区二区在线播放| 久久精品水蜜桃av综合天堂| 亚洲激情在线播放| 国产在线观看一区二区| 在线区一区二视频| 国产欧美日韩卡一| 日本特黄久久久高潮| 不卡av在线免费观看| 日韩一区二区三区在线视频| 亚洲乱码中文字幕| 国产福利不卡视频| 91精品国产综合久久精品性色| 国产精品久久久久婷婷| 六月丁香婷婷色狠狠久久| 在线亚洲免费视频| 国产欧美日韩三级| 精品一区二区三区av| 欧美在线短视频| 国产精品嫩草99a| 精品在线播放免费| 在线成人免费视频| 一区二区激情小说| 91麻豆swag| 亚洲日韩欧美一区二区在线| 国产乱码精品一区二区三区五月婷 | 国产成人精品一区二区三区四区| 欧美日产国产精品| 亚洲综合一区二区| 色悠久久久久综合欧美99| 中文字幕在线观看一区二区| 国产成人一区在线| 日本一区二区三区高清不卡| 国产揄拍国内精品对白| 日韩欧美中文字幕公布| 日本亚洲欧美天堂免费| 欧美精品一二三区| 男人的天堂久久精品| 欧美一级在线观看| 精品午夜久久福利影院| 国产亚洲综合色| 不卡的av网站| 亚洲视频免费看| 在线视频中文字幕一区二区| 亚洲综合偷拍欧美一区色| 欧美在线视频你懂得| 亚洲自拍偷拍av| 欧美乱妇20p| 久久超碰97人人做人人爱| 精品精品国产高清a毛片牛牛| 经典三级在线一区| 国产精品美女久久久久久久网站| 成人黄色av网站在线| 一区二区三区四区蜜桃| 91精品啪在线观看国产60岁| 美女视频网站久久| 国产欧美精品一区| 色88888久久久久久影院按摩| 亚洲一二三级电影| 欧美精品一区二区高清在线观看| 国产乱人伦偷精品视频免下载| 日韩美女视频一区| 欧美老年两性高潮| 国产剧情一区二区| 一区二区三区在线播放| 日韩欧美123| 不卡影院免费观看| 日本不卡高清视频| 国产精品视频一二三区| 欧美日韩综合一区| 国产精品538一区二区在线| 亚洲美女视频在线观看| 精品久久久久一区| 91免费在线播放| 久国产精品韩国三级视频| 中文字幕第一区二区| 91精品国产一区二区| 岛国av在线一区| 免费国产亚洲视频| 亚洲视频网在线直播| 久久亚洲精品国产精品紫薇| 91国偷自产一区二区使用方法| 韩国v欧美v亚洲v日本v| 亚洲国产精品人人做人人爽| 久久先锋影音av| 欧美精品久久久久久久多人混战 | 日韩精彩视频在线观看| 中文字幕一区二区5566日韩| 日韩精品一区二区三区蜜臀| 欧美性受极品xxxx喷水| 粉嫩av亚洲一区二区图片| 日本中文字幕不卡| 亚洲精品一二三四区| 国产偷v国产偷v亚洲高清| 日韩视频永久免费| 欧美色视频在线| 91网站最新网址| 成人午夜碰碰视频| 九九九久久久精品| 日韩和的一区二区| 亚洲成在线观看| 亚洲欧美国产高清| 国产精品国产三级国产aⅴ入口| 91麻豆精品国产| 欧美日韩国产综合视频在线观看| 成人av网址在线| 岛国精品一区二区| 国产精品 欧美精品| 国产精品小仙女| 激情国产一区二区| 国产一区 二区 三区一级| 日韩黄色免费网站| 三级亚洲高清视频| 奇米影视一区二区三区| 天天射综合影视| 日韩精品三区四区| 日本强好片久久久久久aaa| 午夜日韩在线电影| 视频一区欧美精品| 麻豆精品一区二区av白丝在线| 日本一不卡视频| 韩国一区二区三区| 国产成人精品亚洲777人妖| 国产成人免费9x9x人网站视频| 高清在线不卡av| av在线一区二区| 在线看日本不卡| 欧美日韩国产一级| 26uuu精品一区二区| 国产午夜亚洲精品午夜鲁丝片 | 日本韩国一区二区| 欧美日韩一区在线| 日韩欧美的一区二区| 久久久久久综合| 日韩一区中文字幕| 亚洲国产视频一区二区| 日本成人在线不卡视频| 蜜桃视频一区二区| 国产成a人亚洲| 色欲综合视频天天天| 欧美精品久久99| 国产欧美日韩三区| 午夜精品在线看| 国产麻豆视频精品| 在线看日本不卡| 欧美精品一区二区三区很污很色的 | 六月丁香综合在线视频| 高清不卡一区二区| 欧洲日韩一区二区三区| 欧美一级生活片| 国产精品久久久久久久久免费樱桃 | 国产在线视频不卡二| 91麻豆swag| 久久久久久久综合色一本| 综合久久久久久| 精品在线观看免费| 在线免费观看日本欧美| 久久综合色综合88| 亚洲制服欧美中文字幕中文字幕| 免费国产亚洲视频| 日本精品视频一区二区三区| 亚洲精品一区二区三区香蕉| 一区二区三区中文字幕在线观看| 免费久久99精品国产| 色网综合在线观看|