medit/moo/mooscript/mooscript-node.h

35 lines
881 B
C
Raw Normal View History

2006-05-21 16:11:05 -07:00
/*
2006-02-24 20:03:13 -08:00
* mooscript-node.h
*
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
*
* 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__
#include <mooscript/mooscript-func.h>
G_BEGIN_DECLS
2006-02-24 20:39:12 -08:00
typedef struct _MSNode MSNode;
2006-08-20 12:38:20 -07:00
MSNode *ms_node_ref (MSNode *node);
void ms_node_unref (MSNode *node);
MSValue *ms_top_node_eval (MSNode *node,
MSContext *ctx);
2006-03-07 19:02:01 -08:00
G_END_DECLS
2006-02-24 20:03:13 -08:00
#endif /* __MOO_SCRIPT_NODE_H__ */