All Downloads are FREE. Search and download functionalities are using the official Maven repository.

party.iroiro.luajava.Lua53Consts Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/*
 * Copyright (C) 2022 the original author or authors.
 *
 * 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.
 */

package party.iroiro.luajava;

/**
 * Generated with generate-consts.awk:
 * 
awk -f scripts/generate-consts.awk \
 *     .../lua.h \
 *     .../lauxlib.h \
 *     > .../party/iroiro/jua/...Consts.java
*/ public abstract class Lua53Consts { /** * Generated from lua53/jni/lua53/lua.h (line 18): *
#define LUA_VERSION_MAJOR	"5"
*/ public static final String LUA_VERSION_MAJOR = "5"; /** * Generated from lua53/jni/lua53/lua.h (line 19): *
#define LUA_VERSION_MINOR	"3"
*/ public static final String LUA_VERSION_MINOR = "3"; /** * Generated from lua53/jni/lua53/lua.h (line 20): *
#define LUA_VERSION_NUM		503
*/ public static final int LUA_VERSION_NUM = 503; /** * Generated from lua53/jni/lua53/lua.h (line 21): *
#define LUA_VERSION_RELEASE	"6"
*/ public static final String LUA_VERSION_RELEASE = "6"; /** * Generated from lua53/jni/lua53/lua.h (line 26): *
#define LUA_AUTHORS	"R. Ierusalimschy, L. H. de Figueiredo, W. Celes"
*/ public static final String LUA_AUTHORS = "R. Ierusalimschy, L. H. de Figueiredo, W. Celes"; /** * Generated from lua53/jni/lua53/lua.h (line 30): *
#define LUA_SIGNATURE	"\x1bLua"
*/ public static final String LUA_SIGNATURE = "\u001bLua"; /** * Generated from lua53/jni/lua53/lua.h (line 33): *
#define LUA_MULTRET	(-1)
*/ public static final int LUA_MULTRET = (-1); /** * Generated from lua53/jni/lua53/lua.h (line 46): *
#define LUA_OK		0
*/ public static final int LUA_OK = 0; /** * Generated from lua53/jni/lua53/lua.h (line 47): *
#define LUA_YIELD	1
*/ public static final int LUA_YIELD = 1; /** * Generated from lua53/jni/lua53/lua.h (line 48): *
#define LUA_ERRRUN	2
*/ public static final int LUA_ERRRUN = 2; /** * Generated from lua53/jni/lua53/lua.h (line 49): *
#define LUA_ERRSYNTAX	3
*/ public static final int LUA_ERRSYNTAX = 3; /** * Generated from lua53/jni/lua53/lua.h (line 50): *
#define LUA_ERRMEM	4
*/ public static final int LUA_ERRMEM = 4; /** * Generated from lua53/jni/lua53/lua.h (line 51): *
#define LUA_ERRGCMM	5
*/ public static final int LUA_ERRGCMM = 5; /** * Generated from lua53/jni/lua53/lua.h (line 52): *
#define LUA_ERRERR	6
*/ public static final int LUA_ERRERR = 6; /** * Generated from lua53/jni/lua53/lua.h (line 61): *
#define LUA_TNONE		(-1)
*/ public static final int LUA_TNONE = (-1); /** * Generated from lua53/jni/lua53/lua.h (line 63): *
#define LUA_TNIL		0
*/ public static final int LUA_TNIL = 0; /** * Generated from lua53/jni/lua53/lua.h (line 64): *
#define LUA_TBOOLEAN		1
*/ public static final int LUA_TBOOLEAN = 1; /** * Generated from lua53/jni/lua53/lua.h (line 65): *
#define LUA_TLIGHTUSERDATA	2
*/ public static final int LUA_TLIGHTUSERDATA = 2; /** * Generated from lua53/jni/lua53/lua.h (line 66): *
#define LUA_TNUMBER		3
*/ public static final int LUA_TNUMBER = 3; /** * Generated from lua53/jni/lua53/lua.h (line 67): *
#define LUA_TSTRING		4
*/ public static final int LUA_TSTRING = 4; /** * Generated from lua53/jni/lua53/lua.h (line 68): *
#define LUA_TTABLE		5
*/ public static final int LUA_TTABLE = 5; /** * Generated from lua53/jni/lua53/lua.h (line 69): *
#define LUA_TFUNCTION		6
*/ public static final int LUA_TFUNCTION = 6; /** * Generated from lua53/jni/lua53/lua.h (line 70): *
#define LUA_TUSERDATA		7
*/ public static final int LUA_TUSERDATA = 7; /** * Generated from lua53/jni/lua53/lua.h (line 71): *
#define LUA_TTHREAD		8
*/ public static final int LUA_TTHREAD = 8; /** * Generated from lua53/jni/lua53/lua.h (line 73): *
#define LUA_NUMTAGS		9
*/ public static final int LUA_NUMTAGS = 9; /** * Generated from lua53/jni/lua53/lua.h (line 78): *
#define LUA_MINSTACK	20
*/ public static final int LUA_MINSTACK = 20; /** * Generated from lua53/jni/lua53/lua.h (line 82): *
#define LUA_RIDX_MAINTHREAD	1
*/ public static final int LUA_RIDX_MAINTHREAD = 1; /** * Generated from lua53/jni/lua53/lua.h (line 83): *
#define LUA_RIDX_GLOBALS	2
*/ public static final int LUA_RIDX_GLOBALS = 2; /** * Generated from lua53/jni/lua53/lua.h (line 196): *
#define LUA_OPSUB	1
*/ public static final int LUA_OPSUB = 1; /** * Generated from lua53/jni/lua53/lua.h (line 197): *
#define LUA_OPMUL	2
*/ public static final int LUA_OPMUL = 2; /** * Generated from lua53/jni/lua53/lua.h (line 198): *
#define LUA_OPMOD	3
*/ public static final int LUA_OPMOD = 3; /** * Generated from lua53/jni/lua53/lua.h (line 199): *
#define LUA_OPPOW	4
*/ public static final int LUA_OPPOW = 4; /** * Generated from lua53/jni/lua53/lua.h (line 200): *
#define LUA_OPDIV	5
*/ public static final int LUA_OPDIV = 5; /** * Generated from lua53/jni/lua53/lua.h (line 201): *
#define LUA_OPIDIV	6
*/ public static final int LUA_OPIDIV = 6; /** * Generated from lua53/jni/lua53/lua.h (line 202): *
#define LUA_OPBAND	7
*/ public static final int LUA_OPBAND = 7; /** * Generated from lua53/jni/lua53/lua.h (line 203): *
#define LUA_OPBOR	8
*/ public static final int LUA_OPBOR = 8; /** * Generated from lua53/jni/lua53/lua.h (line 204): *
#define LUA_OPBXOR	9
*/ public static final int LUA_OPBXOR = 9; /** * Generated from lua53/jni/lua53/lua.h (line 205): *
#define LUA_OPSHL	10
*/ public static final int LUA_OPSHL = 10; /** * Generated from lua53/jni/lua53/lua.h (line 206): *
#define LUA_OPSHR	11
*/ public static final int LUA_OPSHR = 11; /** * Generated from lua53/jni/lua53/lua.h (line 207): *
#define LUA_OPUNM	12
*/ public static final int LUA_OPUNM = 12; /** * Generated from lua53/jni/lua53/lua.h (line 208): *
#define LUA_OPBNOT	13
*/ public static final int LUA_OPBNOT = 13; /** * Generated from lua53/jni/lua53/lua.h (line 212): *
#define LUA_OPEQ	0
*/ public static final int LUA_OPEQ = 0; /** * Generated from lua53/jni/lua53/lua.h (line 213): *
#define LUA_OPLT	1
*/ public static final int LUA_OPLT = 1; /** * Generated from lua53/jni/lua53/lua.h (line 214): *
#define LUA_OPLE	2
*/ public static final int LUA_OPLE = 2; /** * Generated from lua53/jni/lua53/lua.h (line 301): *
#define LUA_GCSTOP		0
*/ public static final int LUA_GCSTOP = 0; /** * Generated from lua53/jni/lua53/lua.h (line 302): *
#define LUA_GCRESTART		1
*/ public static final int LUA_GCRESTART = 1; /** * Generated from lua53/jni/lua53/lua.h (line 303): *
#define LUA_GCCOLLECT		2
*/ public static final int LUA_GCCOLLECT = 2; /** * Generated from lua53/jni/lua53/lua.h (line 304): *
#define LUA_GCCOUNT		3
*/ public static final int LUA_GCCOUNT = 3; /** * Generated from lua53/jni/lua53/lua.h (line 305): *
#define LUA_GCCOUNTB		4
*/ public static final int LUA_GCCOUNTB = 4; /** * Generated from lua53/jni/lua53/lua.h (line 306): *
#define LUA_GCSTEP		5
*/ public static final int LUA_GCSTEP = 5; /** * Generated from lua53/jni/lua53/lua.h (line 307): *
#define LUA_GCSETPAUSE		6
*/ public static final int LUA_GCSETPAUSE = 6; /** * Generated from lua53/jni/lua53/lua.h (line 308): *
#define LUA_GCSETSTEPMUL	7
*/ public static final int LUA_GCSETSTEPMUL = 7; /** * Generated from lua53/jni/lua53/lua.h (line 309): *
#define LUA_GCISRUNNING		9
*/ public static final int LUA_GCISRUNNING = 9; /** * Generated from lua53/jni/lua53/lua.h (line 401): *
#define LUA_HOOKCALL	0
*/ public static final int LUA_HOOKCALL = 0; /** * Generated from lua53/jni/lua53/lua.h (line 402): *
#define LUA_HOOKRET	1
*/ public static final int LUA_HOOKRET = 1; /** * Generated from lua53/jni/lua53/lua.h (line 403): *
#define LUA_HOOKLINE	2
*/ public static final int LUA_HOOKLINE = 2; /** * Generated from lua53/jni/lua53/lua.h (line 404): *
#define LUA_HOOKCOUNT	3
*/ public static final int LUA_HOOKCOUNT = 3; /** * Generated from lua53/jni/lua53/lua.h (line 405): *
#define LUA_HOOKTAILCALL 4
*/ public static final int LUA_HOOKTAILCALL = 4; /** * Generated from lua53/jni/lua53/lauxlib.h (line 509): *
#define LUA_LOADED_TABLE	"_LOADED"
*/ public static final String LUA_LOADED_TABLE = "_LOADED"; /** * Generated from lua53/jni/lua53/lauxlib.h (line 513): *
#define LUA_PRELOAD_TABLE	"_PRELOAD"
*/ public static final String LUA_PRELOAD_TABLE = "_PRELOAD"; /** * Generated from lua53/jni/lua53/lauxlib.h (line 562): *
#define LUA_NOREF       (-2)
*/ public static final int LUA_NOREF = (-2); /** * Generated from lua53/jni/lua53/lauxlib.h (line 563): *
#define LUA_REFNIL      (-1)
*/ public static final int LUA_REFNIL = (-1); /** * Generated from lua53/jni/lua53/lauxlib.h (line 675): *
#define LUA_FILEHANDLE          "FILE*"
*/ public static final String LUA_FILEHANDLE = "FILE*"; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy