22 lines
487 B
C++
22 lines
487 B
C++
|
|
// ClassDB - code to manipulate class databases.
|
||
|
|
//
|
||
|
|
// It would have been easier to write this in Lua, but since every
|
||
|
|
// lua module in the system depends on it, it's safer to have it
|
||
|
|
// preloaded before we even open any of the lua files.
|
||
|
|
//
|
||
|
|
|
||
|
|
#ifndef SOURCE_HPP
|
||
|
|
#define SOURCE_HPP
|
||
|
|
|
||
|
|
#include "luastack.hpp"
|
||
|
|
|
||
|
|
int lpx_source_update(lua_State *L);
|
||
|
|
int lpx_source_class(lua_State *L);
|
||
|
|
int lpx_source_resetclasses(lua_State *L);
|
||
|
|
|
||
|
|
void luaopen_lpx_source(lua_State *L);
|
||
|
|
|
||
|
|
#endif // SOURCE_HPP
|
||
|
|
|
||
|
|
|