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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? luaconf.h

?? 支持中文變量的lua,基于lua 5.1.1源碼修改而成
?? H
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
/*** $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

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧美一区二区三区国产精品 | 欧日韩精品视频| 久久99精品国产.久久久久久| 日韩伦理电影网| 久久久久国产精品厨房| 精品播放一区二区| 精品国产乱码久久久久久蜜臀 | 色呦呦国产精品| 91在线一区二区三区| 成人午夜视频在线观看| k8久久久一区二区三区| 成人高清伦理免费影院在线观看| 国产精品99久久久久久有的能看| 国产精品 日产精品 欧美精品| 国产99精品国产| 国产aⅴ综合色| 色av成人天堂桃色av| 91福利在线导航| 91精品国产福利| 国产亚洲欧美一级| 国产精品美女久久久久久2018| 亚洲视频一区在线观看| 国产女主播视频一区二区| 日本一区二区不卡视频| 亚洲男人天堂av网| 毛片av中文字幕一区二区| 国产精品一区二区果冻传媒| av激情综合网| 91精品欧美久久久久久动漫| 久久久精品黄色| 一区二区三区不卡在线观看| 日本成人超碰在线观看| 国产成a人亚洲| 在线免费不卡电影| 精品人伦一区二区色婷婷| 亚洲欧美怡红院| 蜜臀久久久99精品久久久久久| 成人免费视频一区二区| 欧美另类变人与禽xxxxx| 国产午夜精品久久久久久免费视 | 一区在线观看视频| 麻豆中文一区二区| 日本二三区不卡| 久久久久久麻豆| 天堂午夜影视日韩欧美一区二区| 国产在线一区观看| 欧美老人xxxx18| 亚洲精品亚洲人成人网 | www.一区二区| 欧美本精品男人aⅴ天堂| 国产精品欧美一区二区三区| 人妖欧美一区二区| 一本久久a久久免费精品不卡| 3atv一区二区三区| 亚洲乱码国产乱码精品精98午夜| 久久99久久久久久久久久久| 欧美最猛性xxxxx直播| 亚洲精品一线二线三线| 男人的天堂久久精品| 在线中文字幕一区| 18涩涩午夜精品.www| 国产一区二区三区四区五区美女| 欧美日韩国产免费一区二区| 中文字幕一区在线观看视频| 国产一区二区三区香蕉 | 久久久精品国产99久久精品芒果| 婷婷国产v国产偷v亚洲高清| 在线免费观看日韩欧美| 自拍偷自拍亚洲精品播放| 国产成人午夜高潮毛片| 久久久综合视频| 国产精品99久久久久| 日韩欧美一级片| 精品一区二区三区不卡| 精品区一区二区| 久久国产福利国产秒拍| 久久综合九色综合欧美98| 久久99久久久久久久久久久| 精品国偷自产国产一区| 经典三级视频一区| 久久精品亚洲国产奇米99| 国产精品一级片| 国产午夜精品一区二区三区嫩草 | 亚洲一区二区三区四区不卡| 国产999精品久久| 国产精品天天摸av网| av一区二区不卡| 亚洲狼人国产精品| 欧美日韩成人在线一区| 免费成人美女在线观看.| 日韩欧美美女一区二区三区| 久久国产人妖系列| 欧美国产欧美亚州国产日韩mv天天看完整 | 国产盗摄视频一区二区三区| 国产精品欧美久久久久无广告| 国产成人亚洲综合a∨猫咪| 日韩一区在线播放| 色天使久久综合网天天| 亚洲免费电影在线| 欧美亚一区二区| 免费在线观看一区| 久久久久久综合| 色综合天天性综合| 伊人婷婷欧美激情| 欧美成人综合网站| 成人app在线观看| 亚洲在线免费播放| 久久精品无码一区二区三区| 在线观看亚洲专区| 国内久久精品视频| 亚洲人成网站色在线观看| 欧美日韩精品电影| 国产精品自拍毛片| 亚洲v中文字幕| 国产欧美日韩久久| 欧美日韩一级黄| 国产91精品免费| 日韩高清中文字幕一区| 国产精品午夜在线观看| 91精品国产全国免费观看 | 亚洲国产毛片aaaaa无费看| 日韩欧美电影一区| 色狠狠综合天天综合综合| 精品在线视频一区| 亚洲制服丝袜在线| 国产校园另类小说区| 欧美美女视频在线观看| 国产成人自拍网| 亚洲一区二区三区中文字幕| 久久久久国产精品人| 国产一区二区在线观看免费| 国产欧美va欧美不卡在线| 欧美一区二区三区在线观看视频| 91视频一区二区| 国产资源在线一区| 免费成人在线影院| 天堂在线亚洲视频| 亚洲一区av在线| 亚洲视频在线一区观看| 中文字幕巨乱亚洲| 国产偷v国产偷v亚洲高清| 日韩视频123| 91精品国产日韩91久久久久久| 国产超碰在线一区| 韩国精品一区二区| 精品亚洲aⅴ乱码一区二区三区| 日一区二区三区| 亚洲欧美在线观看| 亚洲青青青在线视频| 日韩美女视频一区二区| 日韩精品中午字幕| 欧美一区二区三区免费大片| 欧美理论在线播放| 日韩一区二区三区视频在线 | 免费人成网站在线观看欧美高清| 一区二区三区中文字幕| 亚洲男人的天堂网| 亚洲六月丁香色婷婷综合久久 | 欧美性生活影院| 欧美日韩国产小视频| 欧美日韩电影一区| 3d动漫精品啪啪一区二区竹菊| 91精品国产综合久久福利软件| 欧美一区二区三区爱爱| 欧美大片日本大片免费观看| 欧美电影免费观看高清完整版 | 日韩av午夜在线观看| 免费看欧美女人艹b| 激情综合网最新| 国产高清在线观看免费不卡| 成人综合在线观看| 欧美在线观看你懂的| 7777精品伊人久久久大香线蕉| 欧美一卡二卡在线| 欧美videossexotv100| 国产目拍亚洲精品99久久精品| 国产精品网站一区| 亚洲va国产va欧美va观看| 日韩精品成人一区二区在线| 激情综合网av| 91麻豆免费观看| 欧美一级在线免费| 国产人久久人人人人爽| 亚洲精品精品亚洲| 蓝色福利精品导航| 国产69精品久久久久毛片| 在线观看视频一区| 久久久国产精品不卡| 一区二区欧美精品| 国产一区91精品张津瑜| 欧美性色黄大片手机版| 精品捆绑美女sm三区| 一区二区激情视频| 国产麻豆午夜三级精品| 在线观看亚洲专区| 亚洲国产精品精华液ab| 蜜桃av一区二区在线观看| 91天堂素人约啪| 精品99一区二区三区| 亚洲国产日韩一级|