| 12345678910111213141516171819202122232425262728293031 |
- // Read-only tables for Lua
- #ifndef lrotable_h
- #define lrotable_h
- #include "lua.h"
- #include "llimits.h"
- #include "lauxlib.h"
- typedef lua_Number luaR_result;
- // A number entry in the read only table
- typedef struct
- {
- const char *name;
- lua_Number value;
- } luaR_value_entry;
- // A mapping between table name and its entries
- typedef struct
- {
- const char *name;
- const luaL_reg *pfuncs;
- const luaR_value_entry *pvalues;
- } luaR_table;
- luaR_result luaR_findglobal(const char *key, lu_byte *ptype);
- int luaR_findfunction(lua_State *L, const luaL_reg *ptable);
- luaR_result luaR_findentry(void *data, const char *key, lu_byte *ptype);
- #endif
|