src/lua_objs.h
author Tero Marttila <terom@fixme.fi>
Tue, 28 Apr 2009 22:36:36 +0300
branchnew-transport
changeset 157 1e5674d0eec4
parent 143 1edab39c88a8
permissions -rw-r--r--
fixed fifo
#ifndef LUA_OBJS_H
#define LUA_OBJS_H

/**
 * @file
 *
 * Defines lua functions to access the various objects in a nexus
 */
#include "nexus_lua.h"

#include <lua5.1/lua.h>
#include <lua5.1/lauxlib.h>

// XXX: remove
#include "lua_type.h"

/**
 * Registers our lua runtime objects into the given lua state.
 *
 * Call in protected mode.
 */
void lua_objs_init (struct nexus_lua *lua);

#endif /* LUA_OBJS_H */