version 1.14, 2001/12/25 02:39:07 |
version 1.16, 2002/07/10 05:29:36 |
|
|
* 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.13 2001/10/09 01:36:27 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/plot/ox_plot.c,v 1.15 2001/12/27 07:51:18 noro Exp $ |
*/ |
*/ |
#include "ca.h" |
#include "ca.h" |
#include "parse.h" |
#include "parse.h" |
Line 63 extern int asir_OperandStackSize; |
|
Line 63 extern int asir_OperandStackSize; |
|
extern Obj *asir_OperandStack; |
extern Obj *asir_OperandStack; |
extern int asir_OperandStackPtr; |
extern int asir_OperandStackPtr; |
|
|
extern JMP_BUF environnement; |
/* environement is defined in libpari.a */ |
|
extern jmp_buf environnement; |
|
|
extern int do_message; |
extern int do_message; |
extern int ox_flushing; |
extern int ox_flushing; |
Line 284 static void asir_executeFunction(int serial) |
|
Line 285 static void asir_executeFunction(int serial) |
|
create_error(&err,serial,LastError); |
create_error(&err,serial,LastError); |
asir_push_one((Obj)err); |
asir_push_one((Obj)err); |
} |
} |
|
} else if ( !strcmp(func,"draw_string") ) { |
|
if ( draw_string(n) < 0 ) { |
|
create_error(&err,serial,LastError); |
|
asir_push_one((Obj)err); |
|
} |
} else if ( !strcmp(func,"clear_canvas") ) { |
} else if ( !strcmp(func,"clear_canvas") ) { |
clear_canvas(n); |
clear_canvas(n); |
} |
} |