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

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

?? lua.h

?? 腳本語言lua-5.1的源代碼, 非常的經典!
?? H
字號:
/*** $Id: lua.h,v 1.216 2006/01/10 12:50:13 roberto Exp $** Lua - An Extensible Extension Language** Lua.org, PUC-Rio, Brazil (http://www.lua.org)** See Copyright Notice at the end of this file*/#ifndef lua_h#define lua_h#include <stdarg.h>#include <stddef.h>#include "luaconf.h"#define LUA_VERSION	"Lua 5.1"#define LUA_VERSION_NUM	501#define LUA_COPYRIGHT	"Copyright (C) 1994-2006 Lua.org, PUC-Rio"#define LUA_AUTHORS 	"R. Ierusalimschy, L. H. de Figueiredo & W. Celes"/* mark for precompiled code (`<esc>Lua') */#define	LUA_SIGNATURE	"\033Lua"/* option for multiple returns in `lua_pcall' and `lua_call' */#define LUA_MULTRET	(-1)/*** pseudo-indices*/#define LUA_REGISTRYINDEX	(-10000)#define LUA_ENVIRONINDEX	(-10001)#define LUA_GLOBALSINDEX	(-10002)#define lua_upvalueindex(i)	(LUA_GLOBALSINDEX-(i))/* thread status; 0 is OK */#define LUA_YIELD	1#define LUA_ERRRUN	2#define LUA_ERRSYNTAX	3#define LUA_ERRMEM	4#define LUA_ERRERR	5typedef struct lua_State lua_State;typedef int (*lua_CFunction) (lua_State *L);/*** functions that read/write blocks when loading/dumping Lua chunks*/typedef const char * (*lua_Reader) (lua_State *L, void *ud, size_t *sz);typedef int (*lua_Writer) (lua_State *L, const void* p, size_t sz, void* ud);/*** prototype for memory-allocation functions*/typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize, size_t nsize);/*** basic types*/#define LUA_TNONE		(-1)#define LUA_TNIL		0#define LUA_TBOOLEAN		1#define LUA_TLIGHTUSERDATA	2#define LUA_TNUMBER		3#define LUA_TSTRING		4#define LUA_TTABLE		5#define LUA_TFUNCTION		6#define LUA_TUSERDATA		7#define LUA_TTHREAD		8/* minimum Lua stack available to a C function */#define LUA_MINSTACK	20/*** generic extra include file*/#if defined(LUA_USER_H)#include LUA_USER_H#endif/* type of numbers in Lua */typedef LUA_NUMBER lua_Number;/* type for integer functions */typedef LUA_INTEGER lua_Integer;/*** state manipulation*/LUA_API lua_State *(lua_newstate) (lua_Alloc f, void *ud);LUA_API void       (lua_close) (lua_State *L);LUA_API lua_State *(lua_newthread) (lua_State *L);LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf);/*** basic stack manipulation*/LUA_API int   (lua_gettop) (lua_State *L);LUA_API void  (lua_settop) (lua_State *L, int idx);LUA_API void  (lua_pushvalue) (lua_State *L, int idx);LUA_API void  (lua_remove) (lua_State *L, int idx);LUA_API void  (lua_insert) (lua_State *L, int idx);LUA_API void  (lua_replace) (lua_State *L, int idx);LUA_API int   (lua_checkstack) (lua_State *L, int sz);LUA_API void  (lua_xmove) (lua_State *from, lua_State *to, int n);/*** access functions (stack -> C)*/LUA_API int             (lua_isnumber) (lua_State *L, int idx);LUA_API int             (lua_isstring) (lua_State *L, int idx);LUA_API int             (lua_iscfunction) (lua_State *L, int idx);LUA_API int             (lua_isuserdata) (lua_State *L, int idx);LUA_API int             (lua_type) (lua_State *L, int idx);LUA_API const char     *(lua_typename) (lua_State *L, int tp);LUA_API int            (lua_equal) (lua_State *L, int idx1, int idx2);LUA_API int            (lua_rawequal) (lua_State *L, int idx1, int idx2);LUA_API int            (lua_lessthan) (lua_State *L, int idx1, int idx2);LUA_API lua_Number      (lua_tonumber) (lua_State *L, int idx);LUA_API lua_Integer     (lua_tointeger) (lua_State *L, int idx);LUA_API int             (lua_toboolean) (lua_State *L, int idx);LUA_API const char     *(lua_tolstring) (lua_State *L, int idx, size_t *len);LUA_API size_t          (lua_objlen) (lua_State *L, int idx);LUA_API lua_CFunction   (lua_tocfunction) (lua_State *L, int idx);LUA_API void	       *(lua_touserdata) (lua_State *L, int idx);LUA_API lua_State      *(lua_tothread) (lua_State *L, int idx);LUA_API const void     *(lua_topointer) (lua_State *L, int idx);/*** push functions (C -> stack)*/LUA_API void  (lua_pushnil) (lua_State *L);LUA_API void  (lua_pushnumber) (lua_State *L, lua_Number n);LUA_API void  (lua_pushinteger) (lua_State *L, lua_Integer n);LUA_API void  (lua_pushlstring) (lua_State *L, const char *s, size_t l);LUA_API void  (lua_pushstring) (lua_State *L, const char *s);LUA_API const char *(lua_pushvfstring) (lua_State *L, const char *fmt,                                                      va_list argp);LUA_API const char *(lua_pushfstring) (lua_State *L, const char *fmt, ...);LUA_API void  (lua_pushcclosure) (lua_State *L, lua_CFunction fn, int n);LUA_API void  (lua_pushboolean) (lua_State *L, int b);LUA_API void  (lua_pushlightuserdata) (lua_State *L, void *p);LUA_API int   (lua_pushthread) (lua_State *L);/*** get functions (Lua -> stack)*/LUA_API void  (lua_gettable) (lua_State *L, int idx);LUA_API void  (lua_getfield) (lua_State *L, int idx, const char *k);LUA_API void  (lua_rawget) (lua_State *L, int idx);LUA_API void  (lua_rawgeti) (lua_State *L, int idx, int n);LUA_API void  (lua_createtable) (lua_State *L, int narr, int nrec);LUA_API void *(lua_newuserdata) (lua_State *L, size_t sz);LUA_API int   (lua_getmetatable) (lua_State *L, int objindex);LUA_API void  (lua_getfenv) (lua_State *L, int idx);/*** set functions (stack -> Lua)*/LUA_API void  (lua_settable) (lua_State *L, int idx);LUA_API void  (lua_setfield) (lua_State *L, int idx, const char *k);LUA_API void  (lua_rawset) (lua_State *L, int idx);LUA_API void  (lua_rawseti) (lua_State *L, int idx, int n);LUA_API int   (lua_setmetatable) (lua_State *L, int objindex);LUA_API int   (lua_setfenv) (lua_State *L, int idx);/*** `load' and `call' functions (load and run Lua code)*/LUA_API void  (lua_call) (lua_State *L, int nargs, int nresults);LUA_API int   (lua_pcall) (lua_State *L, int nargs, int nresults, int errfunc);LUA_API int   (lua_cpcall) (lua_State *L, lua_CFunction func, void *ud);LUA_API int   (lua_load) (lua_State *L, lua_Reader reader, void *dt,                                        const char *chunkname);LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data);/*** coroutine functions*/LUA_API int  (lua_yield) (lua_State *L, int nresults);LUA_API int  (lua_resume) (lua_State *L, int narg);LUA_API int  (lua_status) (lua_State *L);/*** garbage-collection function and options*/#define LUA_GCSTOP		0#define LUA_GCRESTART		1#define LUA_GCCOLLECT		2#define LUA_GCCOUNT		3#define LUA_GCCOUNTB		4#define LUA_GCSTEP		5#define LUA_GCSETPAUSE		6#define LUA_GCSETSTEPMUL	7LUA_API int (lua_gc) (lua_State *L, int what, int data);/*** miscellaneous functions*/LUA_API int   (lua_error) (lua_State *L);LUA_API int   (lua_next) (lua_State *L, int idx);LUA_API void  (lua_concat) (lua_State *L, int n);LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud);LUA_API void lua_setallocf (lua_State *L, lua_Alloc f, void *ud);/* ** ===============================================================** some useful macros** ===============================================================*/#define lua_pop(L,n)		lua_settop(L, -(n)-1)#define lua_newtable(L)		lua_createtable(L, 0, 0)#define lua_register(L,n,f) (lua_pushcfunction(L, (f)), lua_setglobal(L, (n)))#define lua_pushcfunction(L,f)	lua_pushcclosure(L, (f), 0)#define lua_strlen(L,i)		lua_objlen(L, (i))#define lua_isfunction(L,n)	(lua_type(L, (n)) == LUA_TFUNCTION)#define lua_istable(L,n)	(lua_type(L, (n)) == LUA_TTABLE)#define lua_islightuserdata(L,n)	(lua_type(L, (n)) == LUA_TLIGHTUSERDATA)#define lua_isnil(L,n)		(lua_type(L, (n)) == LUA_TNIL)#define lua_isboolean(L,n)	(lua_type(L, (n)) == LUA_TBOOLEAN)#define lua_isthread(L,n)	(lua_type(L, (n)) == LUA_TTHREAD)#define lua_isnone(L,n)		(lua_type(L, (n)) == LUA_TNONE)#define lua_isnoneornil(L, n)	(lua_type(L, (n)) <= 0)#define lua_pushliteral(L, s)	\	lua_pushlstring(L, "" s, (sizeof(s)/sizeof(char))-1)#define lua_setglobal(L,s)	lua_setfield(L, LUA_GLOBALSINDEX, (s))#define lua_getglobal(L,s)	lua_getfield(L, LUA_GLOBALSINDEX, (s))#define lua_tostring(L,i)	lua_tolstring(L, (i), NULL)/*** compatibility macros and functions*/#define lua_open()	luaL_newstate()#define lua_getregistry(L)	lua_pushvalue(L, LUA_REGISTRYINDEX)#define lua_getgccount(L)	lua_gc(L, LUA_GCCOUNT, 0)#define lua_Chunkreader		lua_Reader#define lua_Chunkwriter		lua_Writer/*** {======================================================================** Debug API** =======================================================================*//*** Event codes*/#define LUA_HOOKCALL	0#define LUA_HOOKRET	1#define LUA_HOOKLINE	2#define LUA_HOOKCOUNT	3#define LUA_HOOKTAILRET 4/*** Event masks*/#define LUA_MASKCALL	(1 << LUA_HOOKCALL)#define LUA_MASKRET	(1 << LUA_HOOKRET)#define LUA_MASKLINE	(1 << LUA_HOOKLINE)#define LUA_MASKCOUNT	(1 << LUA_HOOKCOUNT)typedef struct lua_Debug lua_Debug;  /* activation record *//* Functions to be called by the debuger in specific events */typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar);LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar);LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n);LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n);LUA_API const char *lua_getupvalue (lua_State *L, int funcindex, int n);LUA_API const char *lua_setupvalue (lua_State *L, int funcindex, int n);LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask, int count);LUA_API lua_Hook lua_gethook (lua_State *L);LUA_API int lua_gethookmask (lua_State *L);LUA_API int lua_gethookcount (lua_State *L);struct lua_Debug {  int event;  const char *name;	/* (n) */  const char *namewhat;	/* (n) `global', `local', `field', `method' */  const char *what;	/* (S) `Lua', `C', `main', `tail' */  const char *source;	/* (S) */  int currentline;	/* (l) */  int nups;		/* (u) number of upvalues */  int linedefined;	/* (S) */  int lastlinedefined;	/* (S) */  char short_src[LUA_IDSIZE]; /* (S) */  /* private part */  int i_ci;  /* active function */};/* }====================================================================== *//******************************************************************************* Copyright (C) 1994-2006 Lua.org, PUC-Rio.  All rights reserved.** Permission is hereby granted, free of charge, to any person obtaining* a copy of this software and associated documentation files (the* "Software"), to deal in the Software without restriction, including* without limitation the rights to use, copy, modify, merge, publish,* distribute, sublicense, and/or sell copies of the Software, and to* permit persons to whom the Software is furnished to do so, subject to* the following conditions:** The above copyright notice and this permission notice shall be* included in all copies or substantial portions of the Software.** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.******************************************************************************/#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩av一级电影| 欧美日韩免费高清一区色橹橹 | 青青草精品视频| 大白屁股一区二区视频| 欧美电影免费观看高清完整版| 中文字幕亚洲欧美在线不卡| 国产一区二区成人久久免费影院| 欧美视频一二三区| 亚洲丝袜精品丝袜在线| 国产呦萝稀缺另类资源| 日韩一区二区不卡| 亚洲成人av一区| 色婷婷久久99综合精品jk白丝| 久久久综合视频| 久久草av在线| 欧美一区二区三区的| 亚洲一区在线视频观看| 91色在线porny| 1区2区3区欧美| www.在线成人| 国产精品传媒入口麻豆| 成人性生交大合| 亚洲国产精品国自产拍av| 久久99精品久久久久久久久久久久| 欧美日精品一区视频| 亚洲免费电影在线| 色综合久久天天| 亚洲乱码国产乱码精品精的特点 | 精品少妇一区二区三区| 午夜伦欧美伦电影理论片| 欧美性受极品xxxx喷水| 午夜视频在线观看一区二区三区 | 午夜电影久久久| 在线不卡的av| 免费成人小视频| 日韩一区二区免费视频| 国产在线不卡一卡二卡三卡四卡| 欧美刺激午夜性久久久久久久| 免费观看日韩av| 日韩精品一区二区三区三区免费 | 日韩电影在线看| 欧美一区二区三区在线视频| 免费看精品久久片| 国产亚洲1区2区3区| zzijzzij亚洲日本少妇熟睡| 亚洲人成网站在线| 欧美三级韩国三级日本三斤| 日本麻豆一区二区三区视频| 26uuu精品一区二区在线观看| 国产大片一区二区| 一区二区久久久久久| 欧美久久久久久久久中文字幕| 美女免费视频一区二区| 久久久久久99久久久精品网站| 97久久超碰国产精品| 午夜成人免费电影| 欧美国产精品v| 欧美一a一片一级一片| 久久精品国产精品亚洲红杏| 亚洲国产精品av| 欧美高清视频不卡网| 国产精品一区2区| 亚洲午夜电影在线观看| 精品区一区二区| 91免费版在线| 狠狠色丁香婷综合久久| 亚洲精品国产a| 精品国产免费人成电影在线观看四季| 不卡的看片网站| 日韩av电影免费观看高清完整版 | 欧美精品一区二区三| 色综合视频在线观看| 免费成人在线视频观看| 亚洲色欲色欲www在线观看| 这里只有精品99re| av在线不卡观看免费观看| 免费一区二区视频| 一区二区国产视频| 久久久精品2019中文字幕之3| 欧美日韩高清一区二区| 99re成人在线| 国产精品影音先锋| 日本免费新一区视频| 亚洲免费高清视频在线| 国产日韩av一区| 日韩免费电影网站| 在线成人小视频| 在线观看视频一区二区欧美日韩| 国产乱码精品1区2区3区| 青青草国产精品亚洲专区无| 亚洲影视在线播放| 亚洲欧洲日本在线| 国产日韩欧美综合一区| 精品99一区二区| 欧美一区二区免费| 欧美日本一区二区| 日本久久精品电影| 97超碰欧美中文字幕| 高清在线观看日韩| 国产a视频精品免费观看| 久久99精品一区二区三区| 日本欧美久久久久免费播放网| 午夜伦欧美伦电影理论片| 亚洲国产一区二区在线播放| 亚洲三级电影网站| 1024国产精品| 中文字幕字幕中文在线中不卡视频| 久久久久免费观看| 欧美精品一区二区三| 久久你懂得1024| 久久精品日韩一区二区三区| 精品国内二区三区| 精品国产sm最大网站免费看| 久久综合精品国产一区二区三区| 精品理论电影在线观看| 久久久午夜精品理论片中文字幕| 337p粉嫩大胆噜噜噜噜噜91av| 精品成人一区二区三区四区| 久久精品一区二区三区不卡 | 91精品国产综合久久香蕉麻豆| 在线电影一区二区三区| 日韩精品中午字幕| 久久精品亚洲乱码伦伦中文| 国产精品丝袜黑色高跟| 亚洲丝袜另类动漫二区| 亚洲风情在线资源站| 日韩国产在线一| 国内精品伊人久久久久影院对白| 国产精品18久久久| 一本久久a久久精品亚洲| 欧美日韩在线综合| 欧美一区二区在线免费观看| 久久先锋影音av| 亚洲欧洲日产国码二区| 亚洲成人免费视| 久久国产三级精品| 不卡视频在线观看| 欧美猛男超大videosgay| 精品日韩成人av| 亚洲色图一区二区三区| 爽好多水快深点欧美视频| 国产一区二区三区国产| 99久久精品国产一区二区三区| 色综合色综合色综合色综合色综合| 91麻豆精品久久久久蜜臀| 国产日产欧美一区二区视频| 亚洲国产日产av| 国产精品 日产精品 欧美精品| 欧美在线免费视屏| 精品国产乱码久久久久久免费| 亚洲欧美激情插| 激情图区综合网| 在线观看免费一区| 久久亚洲捆绑美女| 午夜精品免费在线| 成人国产精品免费| 日韩美女视频在线| 亚洲精品免费播放| 国产毛片精品视频| 欧美撒尿777hd撒尿| 国产精品久久午夜夜伦鲁鲁| 玖玖九九国产精品| 欧美丝袜第三区| 国产精品国产自产拍高清av| 久久99蜜桃精品| 欧美日本在线观看| 亚洲天堂av一区| 国产伦精品一区二区三区免费迷 | 色国产综合视频| 国产午夜精品理论片a级大结局 | 91精品国产综合久久久久久| 欧美高清在线一区二区| 日本欧美韩国一区三区| 欧美性感一区二区三区| 国产精品嫩草影院av蜜臀| 久久国产精品99精品国产| 欧美日韩国产综合草草| 亚洲欧美一区二区三区孕妇| 国产精品资源站在线| 26uuu成人网一区二区三区| 视频一区国产视频| 在线观看日韩一区| 国产精品二三区| 成人av资源下载| 久久精品亚洲国产奇米99| 极品瑜伽女神91| 欧美一卡二卡三卡| 午夜视频一区在线观看| 欧美在线观看视频一区二区三区| 国产精品三级av| 粉嫩13p一区二区三区| 久久精品一二三| 成人一区在线看| 国产精品天美传媒| 国产.欧美.日韩| 亚洲欧洲一区二区在线播放| 97aⅴ精品视频一二三区| 最新热久久免费视频| 91天堂素人约啪| 一区二区三区四区高清精品免费观看|