2006-05-21 16:11:05 -07:00
|
|
|
/*
|
2006-02-24 20:03:13 -08:00
|
|
|
* mooscript-node.h
|
2005-12-19 18:02:54 -08:00
|
|
|
*
|
2006-02-23 06:03:17 -08:00
|
|
|
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
2005-12-19 18:02:54 -08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* See COPYING file that comes with this distribution.
|
|
|
|
*/
|
|
|
|
|
2006-02-24 20:03:13 -08:00
|
|
|
#ifndef __MOO_SCRIPT_NODE_H__
|
|
|
|
#define __MOO_SCRIPT_NODE_H__
|
2005-12-19 18:02:54 -08:00
|
|
|
|
2006-04-06 01:32:16 -07:00
|
|
|
#include <mooscript/mooscript-func.h>
|
2005-12-19 18:02:54 -08:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
2006-02-24 20:39:12 -08:00
|
|
|
typedef struct _MSNode MSNode;
|
2005-12-19 18:02:54 -08:00
|
|
|
|
|
|
|
|
2006-08-20 12:38:20 -07:00
|
|
|
MSNode *ms_node_ref (MSNode *node);
|
|
|
|
void ms_node_unref (MSNode *node);
|
2005-12-19 18:02:54 -08:00
|
|
|
|
2006-03-07 14:41:03 -08:00
|
|
|
MSValue *ms_top_node_eval (MSNode *node,
|
|
|
|
MSContext *ctx);
|
2006-03-07 19:02:01 -08:00
|
|
|
|
2005-12-19 18:02:54 -08:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2006-02-24 20:03:13 -08:00
|
|
|
#endif /* __MOO_SCRIPT_NODE_H__ */
|