mirror of
https://gitcode.com/JianFeeeee/LuaCangjia_api.git
synced 2026-09-20 08:58:13 +00:00
- lib/lua 替换为 Lua 5.1.5 官方源码; CMakeLists 删除 5.1 不存在的 lcorolib.c/lctype.c/lutf8lib.c/lbitlib.c - 补充 lua.hpp C++ 包装头(5.1 官方不提供, 保持桥接 include 路径不变) - LUA_OK 兼容宏: 5.1 无此定义(成功返回值为 0) - luaL_tolstring 兼容: 5.1 无此 API, l_print 改用 lua_tostring + lua_typename 兜底(#if LUA_VERSION_NUM >= 502 条件编译, 弹栈逻辑同步分支) - luaL_setfuncs 兼容: 5.1 无此 API, push_tty_file 改手动循环注册 - I/O 重定向沿用 Registry 方案(自 5.2.4 分支同步), typed interop 版本自适应断言同步 - 验证: GTest 44/44 通过
129 lines
2.3 KiB
C
129 lines
2.3 KiB
C
/*
|
|
** $Id: llimits.h,v 1.69.1.1 2007/12/27 13:02:25 roberto Exp $
|
|
** Limits, basic types, and some other `installation-dependent' definitions
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
#ifndef llimits_h
|
|
#define llimits_h
|
|
|
|
|
|
#include <limits.h>
|
|
#include <stddef.h>
|
|
|
|
|
|
#include "lua.h"
|
|
|
|
|
|
typedef LUAI_UINT32 lu_int32;
|
|
|
|
typedef LUAI_UMEM lu_mem;
|
|
|
|
typedef LUAI_MEM l_mem;
|
|
|
|
|
|
|
|
/* chars used as small naturals (so that `char' is reserved for characters) */
|
|
typedef unsigned char lu_byte;
|
|
|
|
|
|
#define MAX_SIZET ((size_t)(~(size_t)0)-2)
|
|
|
|
#define MAX_LUMEM ((lu_mem)(~(lu_mem)0)-2)
|
|
|
|
|
|
#define MAX_INT (INT_MAX-2) /* maximum value of an int (-2 for safety) */
|
|
|
|
/*
|
|
** conversion of pointer to integer
|
|
** this is for hashing only; there is no problem if the integer
|
|
** cannot hold the whole pointer value
|
|
*/
|
|
#define IntPoint(p) ((unsigned int)(lu_mem)(p))
|
|
|
|
|
|
|
|
/* type to ensure maximum alignment */
|
|
typedef LUAI_USER_ALIGNMENT_T L_Umaxalign;
|
|
|
|
|
|
/* result of a `usual argument conversion' over lua_Number */
|
|
typedef LUAI_UACNUMBER l_uacNumber;
|
|
|
|
|
|
/* internal assertions for in-house debugging */
|
|
#ifdef lua_assert
|
|
|
|
#define check_exp(c,e) (lua_assert(c), (e))
|
|
#define api_check(l,e) lua_assert(e)
|
|
|
|
#else
|
|
|
|
#define lua_assert(c) ((void)0)
|
|
#define check_exp(c,e) (e)
|
|
#define api_check luai_apicheck
|
|
|
|
#endif
|
|
|
|
|
|
#ifndef UNUSED
|
|
#define UNUSED(x) ((void)(x)) /* to avoid warnings */
|
|
#endif
|
|
|
|
|
|
#ifndef cast
|
|
#define cast(t, exp) ((t)(exp))
|
|
#endif
|
|
|
|
#define cast_byte(i) cast(lu_byte, (i))
|
|
#define cast_num(i) cast(lua_Number, (i))
|
|
#define cast_int(i) cast(int, (i))
|
|
|
|
|
|
|
|
/*
|
|
** type for virtual-machine instructions
|
|
** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h)
|
|
*/
|
|
typedef lu_int32 Instruction;
|
|
|
|
|
|
|
|
/* maximum stack for a Lua function */
|
|
#define MAXSTACK 250
|
|
|
|
|
|
|
|
/* minimum size for the string table (must be power of 2) */
|
|
#ifndef MINSTRTABSIZE
|
|
#define MINSTRTABSIZE 32
|
|
#endif
|
|
|
|
|
|
/* minimum size for string buffer */
|
|
#ifndef LUA_MINBUFFER
|
|
#define LUA_MINBUFFER 32
|
|
#endif
|
|
|
|
|
|
#ifndef lua_lock
|
|
#define lua_lock(L) ((void) 0)
|
|
#define lua_unlock(L) ((void) 0)
|
|
#endif
|
|
|
|
#ifndef luai_threadyield
|
|
#define luai_threadyield(L) {lua_unlock(L); lua_lock(L);}
|
|
#endif
|
|
|
|
|
|
/*
|
|
** macro to control inclusion of some hard tests on stack reallocation
|
|
*/
|
|
#ifndef HARDSTACKTESTS
|
|
#define condhardstacktests(x) ((void)0)
|
|
#else
|
|
#define condhardstacktests(x) x
|
|
#endif
|
|
|
|
#endif
|