Return to mlo.h CVS log | Up to [local] / OpenXM / src / ox_math |
1.1 ! ohara 1: #ifndef _MLO_H_ ! 2: ! 3: #define _MLO_H_ ! 4: ! 5: #include "ox.h" ! 6: ! 7: /* Mathematica でのみ使用される Local Object の定義 */ ! 8: typedef struct { ! 9: int tag; ! 10: int length; ! 11: cell head[1]; ! 12: char *function; ! 13: } mlo_function; ! 14: ! 15: cmo *receive_mlo(); ! 16: ! 17: ! 18: #endif