party.iroiro.luajava.Lua51Consts Maven / Gradle / Ivy
/*
* 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 Lua51Consts {
/**
* Generated from lua51/jni/lua51/src/lua.h (line 19):
* #define LUA_VERSION "Lua 5.1"
*/
public static final String LUA_VERSION = "Lua 5.1";
/**
* Generated from lua51/jni/lua51/src/lua.h (line 20):
* #define LUA_RELEASE "Lua 5.1.5"
*/
public static final String LUA_RELEASE = "Lua 5.1.5";
/**
* Generated from lua51/jni/lua51/src/lua.h (line 21):
* #define LUA_VERSION_NUM 501
*/
public static final int LUA_VERSION_NUM = 501;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 22):
* #define LUA_COPYRIGHT "Copyright (C) 1994-2012 Lua.org, PUC-Rio"
*/
public static final String LUA_COPYRIGHT = "Copyright (C) 1994-2012 Lua.org, PUC-Rio";
/**
* Generated from lua51/jni/lua51/src/lua.h (line 23):
* #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 lua51/jni/lua51/src/lua.h (line 27):
* #define LUA_SIGNATURE "\033Lua"
*/
public static final String LUA_SIGNATURE = "\033Lua";
/**
* Generated from lua51/jni/lua51/src/lua.h (line 30):
* #define LUA_MULTRET (-1)
*/
public static final int LUA_MULTRET = (-1);
/**
* Generated from lua51/jni/lua51/src/lua.h (line 36):
* #define LUA_REGISTRYINDEX (-10000)
*/
public static final int LUA_REGISTRYINDEX = (-10000);
/**
* Generated from lua51/jni/lua51/src/lua.h (line 37):
* #define LUA_ENVIRONINDEX (-10001)
*/
public static final int LUA_ENVIRONINDEX = (-10001);
/**
* Generated from lua51/jni/lua51/src/lua.h (line 38):
* #define LUA_GLOBALSINDEX (-10002)
*/
public static final int LUA_GLOBALSINDEX = (-10002);
/**
* Generated from lua51/jni/lua51/src/lua.h (line 43):
* #define LUA_YIELD 1
*/
public static final int LUA_YIELD = 1;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 44):
* #define LUA_ERRRUN 2
*/
public static final int LUA_ERRRUN = 2;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 45):
* #define LUA_ERRSYNTAX 3
*/
public static final int LUA_ERRSYNTAX = 3;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 46):
* #define LUA_ERRMEM 4
*/
public static final int LUA_ERRMEM = 4;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 47):
* #define LUA_ERRERR 5
*/
public static final int LUA_ERRERR = 5;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 72):
* #define LUA_TNONE (-1)
*/
public static final int LUA_TNONE = (-1);
/**
* Generated from lua51/jni/lua51/src/lua.h (line 74):
* #define LUA_TNIL 0
*/
public static final int LUA_TNIL = 0;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 75):
* #define LUA_TBOOLEAN 1
*/
public static final int LUA_TBOOLEAN = 1;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 76):
* #define LUA_TLIGHTUSERDATA 2
*/
public static final int LUA_TLIGHTUSERDATA = 2;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 77):
* #define LUA_TNUMBER 3
*/
public static final int LUA_TNUMBER = 3;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 78):
* #define LUA_TSTRING 4
*/
public static final int LUA_TSTRING = 4;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 79):
* #define LUA_TTABLE 5
*/
public static final int LUA_TTABLE = 5;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 80):
* #define LUA_TFUNCTION 6
*/
public static final int LUA_TFUNCTION = 6;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 81):
* #define LUA_TUSERDATA 7
*/
public static final int LUA_TUSERDATA = 7;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 82):
* #define LUA_TTHREAD 8
*/
public static final int LUA_TTHREAD = 8;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 87):
* #define LUA_MINSTACK 20
*/
public static final int LUA_MINSTACK = 20;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 221):
* #define LUA_GCSTOP 0
*/
public static final int LUA_GCSTOP = 0;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 222):
* #define LUA_GCRESTART 1
*/
public static final int LUA_GCRESTART = 1;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 223):
* #define LUA_GCCOLLECT 2
*/
public static final int LUA_GCCOLLECT = 2;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 224):
* #define LUA_GCCOUNT 3
*/
public static final int LUA_GCCOUNT = 3;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 225):
* #define LUA_GCCOUNTB 4
*/
public static final int LUA_GCCOUNTB = 4;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 226):
* #define LUA_GCSTEP 5
*/
public static final int LUA_GCSTEP = 5;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 227):
* #define LUA_GCSETPAUSE 6
*/
public static final int LUA_GCSETPAUSE = 6;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 228):
* #define LUA_GCSETSTEPMUL 7
*/
public static final int LUA_GCSETSTEPMUL = 7;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 311):
* #define LUA_HOOKCALL 0
*/
public static final int LUA_HOOKCALL = 0;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 312):
* #define LUA_HOOKRET 1
*/
public static final int LUA_HOOKRET = 1;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 313):
* #define LUA_HOOKLINE 2
*/
public static final int LUA_HOOKLINE = 2;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 314):
* #define LUA_HOOKCOUNT 3
*/
public static final int LUA_HOOKCOUNT = 3;
/**
* Generated from lua51/jni/lua51/src/lua.h (line 315):
* #define LUA_HOOKTAILRET 4
*/
public static final int LUA_HOOKTAILRET = 4;
/**
* Generated from lua51/jni/lua51/src/lauxlib.h (line 547):
* #define LUA_NOREF (-2)
*/
public static final int LUA_NOREF = (-2);
/**
* Generated from lua51/jni/lua51/src/lauxlib.h (line 548):
* #define LUA_REFNIL (-1)
*/
public static final int LUA_REFNIL = (-1);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy