亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
一区二区激情视频| 国产亚洲成aⅴ人片在线观看| 国产精品久久影院| 国模冰冰炮一区二区| 日韩免费高清av| 久久99热这里只有精品| 欧美视频精品在线| 免费成人在线播放| 欧美一级午夜免费电影| 日本成人在线电影网| 56国语精品自产拍在线观看| 亚洲国产综合在线| 欧美精品99久久久**| 亚洲成人av免费| 欧美日韩一卡二卡| 亚洲bdsm女犯bdsm网站| 欧美久久高跟鞋激| 精品一区二区久久| 26uuu亚洲综合色| 豆国产96在线|亚洲| 成人免费视频在线观看| av电影在线观看完整版一区二区| 日本一区二区久久| 色悠久久久久综合欧美99| 一个色综合av| 欧美一区在线视频| 国产精品伊人色| 综合分类小说区另类春色亚洲小说欧美| 成人午夜电影久久影院| 亚洲欧美另类在线| 欧美精品自拍偷拍| 国产在线精品视频| 亚洲精品视频一区| 欧美一区二区三区公司| 久久99这里只有精品| 日本一区二区三区dvd视频在线| 97aⅴ精品视频一二三区| 亚洲图片有声小说| 久久综合九色综合97婷婷女人| 99视频一区二区| 天堂蜜桃91精品| 欧美国产亚洲另类动漫| 欧美中文字幕一区| 国产一区二区三区四| 最新不卡av在线| 日韩美女一区二区三区| av影院午夜一区| 日本不卡不码高清免费观看| 国产日产欧美精品一区二区三区| 91福利小视频| 国产一区二区精品久久99| 亚洲素人一区二区| 精品国产123| 91网站在线观看视频| 视频一区欧美精品| 国产亚洲短视频| 欧美综合欧美视频| 国产精品99久久久久久久vr| 亚洲欧洲日产国码二区| av毛片久久久久**hd| 日韩精品乱码av一区二区| 精品sm捆绑视频| 欧美午夜寂寞影院| 99精品久久只有精品| 美国av一区二区| 亚洲品质自拍视频| 久久精品欧美一区二区三区不卡| 91精品免费在线| 99这里只有久久精品视频| 麻豆精品久久精品色综合| 亚洲人成网站色在线观看| 久久久久国产免费免费| 欧美一区二区黄色| 欧美日韩国产一级| 欧美性大战久久久| 91丨porny丨户外露出| 国产精品资源在线看| 日韩av中文字幕一区二区三区| 综合亚洲深深色噜噜狠狠网站| 久久久亚洲高清| 3751色影院一区二区三区| 在线视频中文字幕一区二区| 成人av网站在线观看免费| 久久99精品一区二区三区三区| 亚洲大片免费看| 亚洲午夜久久久| 亚洲美女在线国产| 亚洲欧美在线视频| 中文字幕一区二| 中文天堂在线一区| 亚洲国产精品成人久久综合一区| 精品国产一区二区亚洲人成毛片| 日韩精品一区二区三区四区 | 国产精品乱码久久久久久| 日韩欧美你懂的| 欧美一卡二卡三卡| 日韩精品一区二| 久久女同性恋中文字幕| 国产偷国产偷精品高清尤物| 精品国产欧美一区二区| 91在线观看美女| 欧美人与性动xxxx| 欧美日韩日本视频| 欧美日韩在线综合| 91麻豆精品国产无毒不卡在线观看| 色999日韩国产欧美一区二区| 色又黄又爽网站www久久| 在线观看视频一区二区| 欧美日韩亚洲综合| 欧美一区二区国产| 2020国产精品自拍| 国产三级精品在线| 蜜臀久久99精品久久久久宅男 | 国产成人精品亚洲777人妖| 狠狠久久亚洲欧美| 国产盗摄精品一区二区三区在线| 成人av电影在线观看| 欧美伊人久久久久久久久影院| 欧美精品 日韩| 亚洲精品在线电影| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 在线播放视频一区| 精品国产99国产精品| 国产精品伦理一区二区| 亚洲美女免费视频| 三级久久三级久久久| 狠狠色丁香久久婷婷综合_中| 国产成人精品影视| 欧美亚一区二区| 日韩精品一区二| 亚洲美女精品一区| 极品销魂美女一区二区三区| 狠狠色丁香婷综合久久| 97久久精品人人做人人爽50路| 不卡av电影在线播放| 欧美一区二区日韩一区二区| 久久久久国产精品麻豆 | 中文字幕日韩av资源站| 午夜久久久久久久久| 成人在线视频首页| 色狠狠色狠狠综合| 久久女同精品一区二区| 亚洲已满18点击进入久久| 蜜芽一区二区三区| 91传媒视频在线播放| 久久久久久久久久看片| 午夜电影网一区| 波多野结衣亚洲一区| 欧美tk丨vk视频| **性色生活片久久毛片| 国内精品视频666| 欧美视频日韩视频| 国产精品成人午夜| 激情五月婷婷综合| 欧美片网站yy| 夜夜嗨av一区二区三区中文字幕| 国产乱理伦片在线观看夜一区| 欧美人与性动xxxx| 一区二区三区在线影院| 麻豆精品一区二区三区| 91影院在线免费观看| 欧美tk丨vk视频| 亚洲地区一二三色| 99r国产精品| 欧美精品一区二区三区高清aⅴ | 免费成人在线观看| 欧美日韩情趣电影| 亚洲免费观看视频| 精品一区二区免费| 欧美一区二区在线观看| 国产精品视频一二三区| 国产乱子伦视频一区二区三区| 日韩欧美黄色影院| 亚洲一区二区视频在线观看| 99综合电影在线视频| 中文字幕巨乱亚洲| 国产精品99久久久久久久vr| 精品卡一卡二卡三卡四在线| 日韩在线a电影| 欧美肥大bbwbbw高潮| 午夜精彩视频在线观看不卡| 欧美亚洲尤物久久| 国产精品国产三级国产专播品爱网| 美女在线视频一区| 91精品国产综合久久久蜜臀粉嫩| 亚洲欧美日韩成人高清在线一区| 国产综合色视频| 欧美一级片在线| 日韩av一区二区三区| 欧美久久一二三四区| 亚洲成人免费在线观看| 日本高清无吗v一区| 中文字幕亚洲区| 成人av午夜影院| 《视频一区视频二区| 99久精品国产| 亚洲第一狼人社区| 91精品国产色综合久久ai换脸| 日韩精品一二三四| 日韩免费一区二区|