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

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

?? luaconf.h

?? 這個(gè)是一個(gè)嵌入式腳本支持引擎, 體積十分小巧
?? H
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
/*** $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

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区三区欧美亚洲| 亚洲精品一区二区三区99| 国产清纯美女被跳蛋高潮一区二区久久w | 91网上在线视频| 欧美国产国产综合| 国产精品自在在线| 欧美xxxx老人做受| 国内精品伊人久久久久av影院| 极品少妇一区二区三区精品视频| 成人爽a毛片一区二区免费| 精品国产污污免费网站入口| 日本成人在线看| 欧美亚洲一区二区在线观看| 亚洲高清视频的网址| 91麻豆精品视频| 亚洲精品视频自拍| 在线免费一区三区| 一区二区在线电影| 在线免费观看一区| 亚洲一二三区不卡| 欧美日韩精品一区二区三区| 肉丝袜脚交视频一区二区| 欧美理论在线播放| 毛片基地黄久久久久久天堂| 欧美不卡视频一区| 国产另类ts人妖一区二区| 精品1区2区在线观看| 国产不卡视频在线观看| 国产精品久久免费看| 91成人网在线| 午夜精品一区二区三区免费视频| 国产成人综合亚洲91猫咪| 国产精品人成在线观看免费| 91欧美激情一区二区三区成人| 日韩精品一区二区在线观看| 人人狠狠综合久久亚洲| 日韩精品影音先锋| 成人影视亚洲图片在线| 国产精品久久久久久久久快鸭| 日韩成人免费在线| 精品国产91乱码一区二区三区| 中文字幕在线免费不卡| 在线观看一区二区精品视频| 日本中文在线一区| 国产欧美精品一区二区三区四区| 天堂午夜影视日韩欧美一区二区| 成人性生交大片免费看视频在线| 日韩欧美中文字幕一区| 国产一区不卡视频| 国产午夜亚洲精品午夜鲁丝片 | 精品国产乱码久久久久久久| 国产成人免费高清| 又紧又大又爽精品一区二区| 欧美四级电影网| 韩国毛片一区二区三区| 亚洲欧美日韩人成在线播放| 欧美三级三级三级| 美女诱惑一区二区| 久久欧美中文字幕| 欧美亚一区二区| 国产一区二区网址| 一个色综合网站| 久久久久久久久免费| 99国产精品久久久久久久久久 | 极品美女销魂一区二区三区免费| 67194成人在线观看| 丁香六月综合激情| 亚洲国产视频a| 日本一区二区三区久久久久久久久不 | 国产 欧美在线| 亚洲综合成人在线| 久久五月婷婷丁香社区| 欧美午夜精品一区| 国产91露脸合集magnet| 视频一区视频二区在线观看| 久久久久88色偷偷免费| 欧美福利视频一区| 成人福利电影精品一区二区在线观看| 精品乱人伦小说| 91久久人澡人人添人人爽欧美| 最新中文字幕一区二区三区| 日韩一区二区高清| 日本乱人伦aⅴ精品| 国产成人免费9x9x人网站视频| 久久天天做天天爱综合色| 欧美三级午夜理伦三级中视频| 亚洲国产精品精华液网站| 亚洲国产精品成人久久综合一区| 国产成人亚洲精品狼色在线| 亚洲va韩国va欧美va精品 | 91精品国产综合久久久蜜臀图片| 亚洲成人午夜电影| 国产日产精品一区| 日韩一区二区三区四区五区六区| 国产一区二区三区在线观看免费| 国产色一区二区| 91精品国产色综合久久| 在线观看区一区二| av不卡免费电影| 高清在线成人网| 久久99精品国产.久久久久| 亚洲国产精品久久久久婷婷884| 日韩视频在线你懂得| 91官网在线观看| 成人高清视频在线| 国产福利91精品一区| 日本三级韩国三级欧美三级| 夜夜嗨av一区二区三区中文字幕| 51精品久久久久久久蜜臀| 色婷婷亚洲精品| 成人av网站免费| 国产精品自拍在线| 精品一区二区在线免费观看| 日本大胆欧美人术艺术动态| 亚洲第一狼人社区| 一区二区三区中文字幕在线观看| 欧美日韩不卡一区二区| 欧美午夜免费电影| 欧美在线视频日韩| 欧美在线观看视频一区二区 | 国产成人小视频| 精品亚洲成av人在线观看| 免费的成人av| 日韩高清一区在线| 日韩电影在线免费观看| 日本中文字幕一区| 日本视频一区二区三区| 青娱乐精品在线视频| 日本少妇一区二区| 日本欧美在线观看| 麻豆精品在线看| 久久国产尿小便嘘嘘| 激情综合色播激情啊| 国产毛片精品视频| 国产精品亚洲视频| 成人亚洲精品久久久久软件| 丁香亚洲综合激情啪啪综合| 高清不卡一二三区| 成人av免费观看| 色综合天天在线| 色哟哟在线观看一区二区三区| 精品亚洲aⅴ乱码一区二区三区| 亚洲激情图片一区| 亚洲六月丁香色婷婷综合久久 | 蜜臀av国产精品久久久久 | 在线不卡中文字幕播放| 91精品欧美一区二区三区综合在 | 欧美日韩免费观看一区三区| 欧美日韩激情一区| 日韩一区和二区| 久久综合久久综合九色| 国产婷婷色一区二区三区四区| 3d成人动漫网站| 欧美成人伊人久久综合网| 国产三级精品三级| 亚洲欧洲在线观看av| 一卡二卡欧美日韩| 青青草国产精品97视觉盛宴| 免费成人深夜小野草| 精彩视频一区二区三区| 国产精品99久久久久久宅男| 成人av网在线| 欧美日韩一区 二区 三区 久久精品| 色婷婷精品久久二区二区蜜臂av| 国产在线国偷精品产拍免费yy| 亚洲成人午夜电影| 紧缚捆绑精品一区二区| 国产91色综合久久免费分享| 一本色道久久综合精品竹菊| 欧洲精品一区二区| 欧美电视剧在线看免费| 国产精品网站一区| 亚洲成人在线网站| 看电影不卡的网站| eeuss鲁一区二区三区| 欧美视频第二页| 久久久影视传媒| 亚洲影视在线播放| 国产一区二区三区四区五区美女 | 亚洲国产人成综合网站| 国产最新精品精品你懂的| 成人app下载| 欧美一区二区三区免费| 国产人久久人人人人爽| 亚洲va天堂va国产va久| 国产在线观看一区二区| 欧美在线影院一区二区| 久久久久久久综合日本| 亚洲综合色成人| 国产精品18久久久久久久久久久久| 国产成人午夜精品影院观看视频 | 国产乱国产乱300精品| 在线观看不卡视频| 2023国产精品自拍| 亚洲va韩国va欧美va| 国产一区二区三区电影在线观看| 成人在线综合网站| 91精品国产一区二区三区| 自拍偷拍亚洲激情| 国产乱对白刺激视频不卡|