[BACK]Return to serv2.h CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_math

Annotation of OpenXM/src/ox_math/serv2.h, Revision 1.5

1.1       ohara       1: /* -*- mode: C; coding: euc-japan -*- */
1.5     ! ohara       2: /* $OpenXM: OpenXM/src/ox_math/serv2.h,v 1.4 1999/11/18 21:56:44 ohara Exp $ */
1.1       ohara       3:
                      4: #ifndef _SERV2_H_
                      5: #define _SERV2_H_
                      6:
                      7: #include "ox.h"
                      8:
1.5     ! ohara       9: #define FLAG_MLTKSYM_IS_INDETERMINATE   0
        !            10: #define FLAG_MLTKSYM_IS_STRING          1
        !            11:
        !            12: #define ERROR_ID_UNKNOWN_SM 10
        !            13: #define ERROR_ID_FAILURE_MLINK         11
        !            14:
        !            15: int  ml_evaluateStringByLocalParser(char *str);
        !            16: int  ml_init();
        !            17: int  ml_exit();
        !            18: cmo  *ml_get_object();
        !            19: int  ml_executeFunction(char *function, int argc, cmo *argv[]);
1.1       ohara      20:
                     21: int  initialize_stack();
                     22: int  push(cmo *m);
1.3       ohara      23: cmo  *pop();
1.1       ohara      24: int  sm_popCMO(int fd_write);
                     25: int  sm_popString_old(int fd_write);
                     26: int  sm_popString(int fd_write);
                     27: int  sm_pops(int fd_write);
                     28: int  sm_executeStringByLocalParser();
                     29: int  sm_executeFunction(int fd_write);
                     30:
                     31: int  receive_sm_command(int fd_read);
1.3       ohara      32: int  execute_sm_command(int fd_write, int code);
1.4       ohara      33:
                     34: int shutdown();
1.1       ohara      35: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>