Annotation of OpenXM/src/ox_math/serv2.h, Revision 1.4
1.1 ohara 1: /* -*- mode: C; coding: euc-japan -*- */
1.4 ! ohara 2: /* $OpenXM: OpenXM/src/ox_math/serv2.h,v 1.3 1999/11/07 12:12:56 ohara Exp $ */
1.1 ohara 3:
4: #ifndef _SERV2_H_
5: #define _SERV2_H_
6:
7: #include "ox.h"
8:
9: int MATH_evaluateStringByLocalParser(char *str);
10: int MATH_init();
11: int MATH_exit();
1.3 ohara 12: cmo *MATH_get_object();
1.1 ohara 13: int MATH_executeFunction(char *function, int argc, cmo *argv[]);
14:
15: int initialize_stack();
16: int push(cmo *m);
1.3 ohara 17: cmo *pop();
1.1 ohara 18: int sm_popCMO(int fd_write);
19: int sm_popString_old(int fd_write);
20: int sm_popString(int fd_write);
21: int sm_pops(int fd_write);
22: int sm_executeStringByLocalParser();
23: int sm_executeFunction(int fd_write);
24:
25: int receive_sm_command(int fd_read);
1.3 ohara 26: int execute_sm_command(int fd_write, int code);
1.4 ! ohara 27:
! 28: int shutdown();
1.1 ohara 29: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>