summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/rocklib.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/rocklib.h')
-rw-r--r--apps/plugins/lua/rocklib.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/plugins/lua/rocklib.h b/apps/plugins/lua/rocklib.h
index 84b5fd2de0..83d82e56ef 100644
--- a/apps/plugins/lua/rocklib.h
+++ b/apps/plugins/lua/rocklib.h
@@ -23,6 +23,20 @@
23#define _ROCKLIB_H_ 23#define _ROCKLIB_H_
24 24
25#define LUA_ROCKLIBNAME "rb" 25#define LUA_ROCKLIBNAME "rb"
26
27#ifndef ERR_IDX_RANGE
28#define ERR_IDX_RANGE "index out of range"
29#endif
30
31#ifndef ERR_DATA_OVF
32#define ERR_DATA_OVF "data overflow"
33#endif
34
35#ifndef ERR_NO_ALLOC_DBYTES
36#define ERR_NO_ALLOC_DBYTES "Can't allocate %d bytes!"
37#endif
38
39
26LUALIB_API int (luaopen_rock) (lua_State *L); 40LUALIB_API int (luaopen_rock) (lua_State *L);
27const char* get_current_path(lua_State *L, int level); 41const char* get_current_path(lua_State *L, int level);
28 42