=================================================================== RCS file: /home/cvs/OpenXM/src/ox_math/Attic/serv2.h,v retrieving revision 1.6 retrieving revision 1.9 diff -u -p -r1.6 -r1.9 --- OpenXM/src/ox_math/Attic/serv2.h 1999/12/14 09:31:56 1.6 +++ OpenXM/src/ox_math/Attic/serv2.h 2000/12/03 15:19:23 1.9 @@ -1,10 +1,10 @@ /* -*- mode: C; coding: euc-japan -*- */ -/* $OpenXM: OpenXM/src/ox_math/serv2.h,v 1.5 1999/11/29 12:09:58 ohara Exp $ */ +/* $OpenXM: OpenXM/src/ox_math/serv2.h,v 1.8 2000/10/10 19:58:30 ohara Exp $ */ #ifndef _SERV2_H_ #define _SERV2_H_ -#include "ox.h" +#include #define FLAG_MLTKSYM_IS_INDETERMINATE 0 #define FLAG_MLTKSYM_IS_STRING 1 @@ -12,17 +12,16 @@ #define ERROR_ID_UNKNOWN_SM 10 #define ERROR_ID_FAILURE_MLINK 11 -int initialize_stack(); int push(cmo *m); cmo *pop(); -int sm_popCMO(int fd); -int sm_popString(int fd); -int sm_pops(int fd); +int sm_popCMO(OXFILE *oxfp); +int sm_popString(OXFILE *oxfp); +int sm_pops(OXFILE *oxfp); int sm_executeStringByLocalParser(); -int sm_executeFunction(int fd); +int sm_executeFunction(OXFILE *oxfp); -int receive_sm_command(int fd); -int execute_sm_command(int fd, int code); +int receive_sm_command(OXFILE *oxfp); +int execute_sm_command(OXFILE *oxfp, int code); int shutdown(); #endif