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

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

?? luaconf.h

?? 這個是一個嵌入式腳本支持引擎, 體積十分小巧
?? H
?? 第 1 頁 / 共 2 頁
字號:
/*** $Id: luaconf.h,v 1.82.1.7 2008/02/11 16:25:08 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;"  ".\\?51.dll;"  LUA_CDIR"?.dll;" LUA_CDIR"?51.dll;" LUA_CDIR"clibs\\?.dll;" LUA_CDIR"clibs\\?51.dll;" LUA_CDIR"loadall.dll;" LUA_CDIR"clibs\\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;"  "./lib?51.so;"  LUA_CDIR"?.so;" LUA_CDIR"lib?51.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_register'** 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一区二区三区免费野_久草精品视频
日日摸夜夜添夜夜添亚洲女人| 国产精品一区在线观看你懂的| 欧美日本国产视频| 婷婷久久综合九色综合绿巨人| 51久久夜色精品国产麻豆| 91精品综合久久久久久| 国产精品萝li| 国产自产v一区二区三区c| 国产精品免费久久| 91黄色激情网站| 日本少妇一区二区| 国产亚洲人成网站| 色噜噜狠狠一区二区三区果冻| 午夜精品一区二区三区三上悠亚| 精品国产一区二区三区四区四| 成人免费av资源| 91同城在线观看| 亚洲444eee在线观看| 日韩视频免费观看高清完整版在线观看 | 精品一区二区免费| 国产女人aaa级久久久级| 色吊一区二区三区| 麻豆精品蜜桃视频网站| 国产精品麻豆欧美日韩ww| 欧美日韩成人一区| 国产福利电影一区二区三区| 亚洲美腿欧美偷拍| 日韩一区二区中文字幕| 成人av在线电影| 日韩影视精彩在线| 欧美国产精品v| 欧美性色欧美a在线播放| 国产一区二区三区综合| 亚洲影视在线播放| 久久久久97国产精华液好用吗| 91在线视频观看| 免费久久精品视频| 亚洲视频一区二区免费在线观看| 日韩一级片在线播放| 99精品偷自拍| 日韩av不卡一区二区| 国产精品一区2区| 色婷婷av一区二区三区软件| 日韩精品一区国产麻豆| 中文字幕日韩精品一区| 欧美一区二区三区啪啪| 成人精品鲁一区一区二区| 欧美人与z0zoxxxx视频| 五月激情丁香一区二区三区| 欧美老女人在线| 在线精品亚洲一区二区不卡| 精品捆绑美女sm三区| 亚洲男女一区二区三区| 久久99久久99| 91福利国产精品| 久久久久久久久一| 亚洲国产精品嫩草影院| 波多野结衣在线一区| 91精品在线观看入口| 亚洲男同性视频| 国产精品1024| 日韩亚洲电影在线| 亚洲自拍偷拍欧美| 成人精品高清在线| 精品日产卡一卡二卡麻豆| 一区二区三区在线不卡| 国产91精品露脸国语对白| 3d动漫精品啪啪1区2区免费 | 亚洲视频你懂的| 久久99国内精品| 欧美日产在线观看| 亚洲精品国产无套在线观| 国产黑丝在线一区二区三区| 欧美一区二区不卡视频| 亚洲最色的网站| 99国产一区二区三精品乱码| 久久久亚洲高清| 蜜臀久久99精品久久久久久9| 91久久奴性调教| 国产精品福利一区| 国产精品亚洲午夜一区二区三区| 日韩精品自拍偷拍| 日韩精品一二区| 欧美午夜电影网| 亚洲欧美成人一区二区三区| 国产成人精品亚洲日本在线桃色 | 亚洲综合图片区| av网站免费线看精品| 亚洲一区免费在线观看| 97久久精品人人做人人爽| 欧美精彩视频一区二区三区| 激情丁香综合五月| 欧美xxxxxxxx| 美日韩黄色大片| 日韩美女视频一区二区在线观看| 日日夜夜精品免费视频| 欧美日韩国产电影| 亚洲成人在线网站| 欧美日韩在线精品一区二区三区激情| 亚洲欧美二区三区| 色综合久久综合网| 樱桃视频在线观看一区| 在线观看www91| 性做久久久久久| 欧美日韩精品免费观看视频 | 在线视频你懂得一区二区三区| 亚洲欧洲国产日韩| 在线精品视频免费观看| 亚州成人在线电影| 欧美男男青年gay1069videost| 亚洲福利一二三区| 91麻豆精品国产综合久久久久久 | 91麻豆精品国产91久久久久久久久 | 亚洲国产精品传媒在线观看| 盗摄精品av一区二区三区| 中文字幕精品一区二区精品绿巨人| 成人小视频免费在线观看| 综合欧美一区二区三区| 欧美午夜不卡在线观看免费| 五月婷婷欧美视频| 日韩欧美中文字幕制服| 国产成人综合在线| 亚洲日本在线a| 欧美日韩性生活| 久久狠狠亚洲综合| 中文字幕欧美日韩一区| 欧美在线一区二区| 免费在线看成人av| 日本一区二区视频在线观看| 91一区二区三区在线观看| 亚洲激情在线激情| 91精品国产一区二区三区| 久久成人精品无人区| 国产精品国产三级国产专播品爱网| 日本韩国欧美一区| 蜜臀av性久久久久蜜臀aⅴ四虎| 久久久久亚洲蜜桃| 色偷偷88欧美精品久久久| 免费国产亚洲视频| 国产日产欧产精品推荐色| 91视频91自| 亚洲精品福利视频网站| 日韩午夜电影av| 91视频在线观看| 亚洲高清在线精品| 久久久久久久国产精品影院| 精品国产伦一区二区三区观看体验 | 中文成人综合网| 欧美乱妇15p| 国产精品久久久久一区二区三区| 国产无一区二区| 亚洲国产成人tv| 国产美女娇喘av呻吟久久| 蜜桃视频免费观看一区| 亚洲一区二区三区四区在线免费观看 | 精品视频在线免费看| 高清久久久久久| 欧美性欧美巨大黑白大战| 久久综合九色综合97婷婷| 国产精品九色蝌蚪自拍| 久久er精品视频| 制服丝袜一区二区三区| 亚洲乱码国产乱码精品精的特点| 国产精品一区久久久久| 日韩一区二区精品葵司在线| 一区二区三区四区蜜桃| 成熟亚洲日本毛茸茸凸凹| 国产亚洲福利社区一区| 国产剧情在线观看一区二区 | 丁香婷婷综合色啪| 精品日韩欧美一区二区| 日日夜夜免费精品| 欧美精品一区二区高清在线观看| 亚洲午夜一区二区| 一本色道a无线码一区v| 国产精品另类一区| 久久精品国产亚洲aⅴ| 91精品福利视频| 亚洲成av人影院| 欧美久久久久久久久| 亚洲成av人影院| 精品国产成人在线影院| 国产成人av在线影院| 亚洲欧美国产三级| 99精品在线免费| 午夜精品福利久久久| 欧美日韩国产综合久久| 日本中文字幕一区| 欧美va亚洲va在线观看蝴蝶网| 三级不卡在线观看| 欧美三级蜜桃2在线观看| 亚洲男人的天堂网| 久久久影院官网| 欧美偷拍一区二区| 国产精品主播直播| 亚洲精品乱码久久久久久日本蜜臀| 欧美人与性动xxxx| 成人午夜视频在线观看| 亚洲影视资源网| 欧美电影一区二区三区|