version 1.16, 2002/07/10 05:29:36 |
version 1.19, 2003/02/14 22:29:19 |
|
|
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* |
* |
* $OpenXM: OpenXM_contrib2/asir2000/plot/ox_plot.c,v 1.15 2001/12/27 07:51:18 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/plot/ox_plot.c,v 1.18 2002/08/02 02:41:04 noro Exp $ |
*/ |
*/ |
#include "ca.h" |
#include "ca.h" |
#include "parse.h" |
#include "parse.h" |
|
|
#include "ifplot.h" |
#include "ifplot.h" |
#include "version.h" |
#include "version.h" |
#include <signal.h> |
#include <signal.h> |
#if PARI |
#if defined(PARI) |
#include "genpari.h" |
#include "genpari.h" |
#endif |
#endif |
|
|
Line 75 extern char LastError[]; |
|
Line 75 extern char LastError[]; |
|
void create_error(ERR *,unsigned int ,char *); |
void create_error(ERR *,unsigned int ,char *); |
|
|
void ox_io_init(); |
void ox_io_init(); |
void ox_asir_init(int,char **); |
void ox_asir_init(int,char **,char *); |
Obj asir_pop_one(); |
Obj asir_pop_one(); |
void asir_push_one(Obj); |
void asir_push_one(Obj); |
void asir_end_flush(); |
void asir_end_flush(); |
Line 106 void ox_plot_main(int argc,char **argv) |
|
Line 106 void ox_plot_main(int argc,char **argv) |
|
int use_x; |
int use_x; |
|
|
#if !defined(VISUAL) |
#if !defined(VISUAL) |
ox_asir_init(argc,argv); |
ox_asir_init(argc,argv,"ox_plot"); |
use_x = init_plot_display(argc,argv); |
use_x = init_plot_display(argc,argv); |
if ( use_x ) |
if ( use_x ) |
ds = ConnectionNumber(display); |
ds = ConnectionNumber(display); |
Line 238 static void asir_do_cmd(unsigned int cmd,unsigned int |
|
Line 238 static void asir_do_cmd(unsigned int cmd,unsigned int |
|
client_mathcap = (MATHCAP)asir_pop_one(); |
client_mathcap = (MATHCAP)asir_pop_one(); |
store_remote_mathcap(0,client_mathcap); |
store_remote_mathcap(0,client_mathcap); |
break; |
break; |
|
case SM_nop: |
default: |
default: |
break; |
break; |
} |
} |