lm_message_node.h
author Myhailo Danylenko <isbear@ukrpost.net>
Sat, 14 Mar 2009 02:41:26 +0200
changeset 12 63f06a23c235
parent 11 a8c6460d612b
child 18 6effa1929af7
permissions -rw-r--r--
Empty to field * Message with empty to field can be created * Fixed checklm* functions for complex types * Formatting fixes


#ifndef LLM_MESSAGE_NODE_H
#define LLM_MESSAGE_NODE_H

#include <lua.h>

int name_lm_node (lua_State *L);
int next_lm_node (lua_State *L);
int prev_lm_node (lua_State *L);
int children_lm_node (lua_State *L);
int parent_lm_node (lua_State *L);
int value_lm_node (lua_State *L);
int child_lm_node (lua_State *L);
int find_child_lm_node (lua_State *L);
int raw_lm_node (lua_State *L);
int attribute_lm_node (lua_State *L);
int xml_lm_node (lua_State *L);
int path_lm_node (lua_State *L);

int luaopen_lm_message_node (lua_State *L);

#endif