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

File: [local] / OpenXM / src / ox_math / mlo.h (download)

Revision 1.4, Sat Jan 22 06:30:23 2000 UTC (24 years, 4 months ago) by ohara
Branch: MAIN
CVS Tags: RELEASE_20000124
Changes since 1.3: +1 -0 lines

I add OpenXM identifier.

/* $OpenXM: OpenXM/src/ox_math/mlo.h,v 1.4 2000/01/22 06:30:23 ohara Exp $ */
#ifndef _MLO_H_

#define _MLO_H_

#include "ox.h"

/* definitions of Mathlink Local Objects. */
typedef struct {
    int tag;
    int length;
    cell head[1];
    char *function;
} mlo_function;

typedef cmo mlo;
typedef cmo_string mlo_string;
typedef cmo_zz mlo_zz;

mlo_function *new_mlo_function(char *function);

cmo *receive_mlo();
mlo *receive_mlo_zz();
mlo *receive_mlo_string();
cmo *receive_mlo_function();
cmo *convert_mlo_to_cmo(mlo *m);
cmo *receive_mlo_function_newer();
cmo *receive_mlo_symbol();

int send_mlo(cmo *m);
int send_mlo_int32(cmo *m);
int send_mlo_string(cmo *m);
int send_mlo_zz(cmo *m);
int send_mlo_list(cmo *c);

int ml_init();
int ml_exit();
int ml_flush();
int ml_select();
int ml_evaluateStringByLocalParser(char *str);
int ml_executeFunction(char *function, int argc, cmo *argv[]);

#endif