[BACK]Return to plot.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / windows / engine2000

Diff for /OpenXM_contrib2/windows/engine2000/plot.c between version 1.2 and 1.3

version 1.2, 2001/10/05 10:23:08 version 1.3, 2001/10/09 01:36:29
Line 45 
Line 45 
  * 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/windows/engine2000/plot.c,v 1.1.1.1 2000/11/22 06:20:13 noro Exp $   * $OpenXM: OpenXM_contrib2/windows/engine2000/plot.c,v 1.2 2001/10/05 10:23:08 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 57 
Line 57 
 #include "genpari.h"  #include "genpari.h"
 #endif  #endif
   
 void ox_usr1_handler();  
   
 extern int asir_OperandStackSize;  extern int asir_OperandStackSize;
 extern Obj *asir_OperandStack;  extern Obj *asir_OperandStack;
 extern int asir_OperandStackPtr;  extern int asir_OperandStackPtr;
Line 92  LIST asir_GetErrorList();
Line 90  LIST asir_GetErrorList();
 static void asir_do_cmd(unsigned int,unsigned int);  static void asir_do_cmd(unsigned int,unsigned int);
 static void process_ox();  static void process_ox();
 static void asir_executeFunction();  static void asir_executeFunction();
   static void process_resize(struct canvas *can,POINT startp,POINT endp);
   
 #if defined(VISUAL)  #if defined(VISUAL)
   
Line 105  void ox_plot_main()
Line 104  void ox_plot_main()
 void ox_plot_main(int argc,char **argv)  void ox_plot_main(int argc,char **argv)
 #endif  #endif
 {  {
   #if !defined(VISUAL)
         int ds;          int ds;
         fd_set r;          fd_set r;
         int n;          int n;
   #endif
         int id;          int id;
         Obj obj;          Obj obj;
         unsigned int serial;          unsigned int serial;
Line 232  static void process_ox(int id, Obj obj, unsigned int s
Line 233  static void process_ox(int id, Obj obj, unsigned int s
                 fprintf(stderr,"\n");                  fprintf(stderr,"\n");
 }  }
   
 static process_resize(can,startp,endp)  static void process_resize(struct canvas *can,POINT startp,POINT endp)
 struct canvas *can;  
 POINT startp,endp;  
 {  {
         if ( can->mode == MODE_INTERACTIVE )          if ( can->mode == MODE_INTERACTIVE )
                 return;                  return;
Line 301  static void asir_do_cmd(unsigned int cmd,unsigned int 
Line 300  static void asir_do_cmd(unsigned int cmd,unsigned int 
         }          }
 }  }
   
 static void asir_executeFunction(serial)  static void asir_executeFunction(int serial)
 int serial;  
 {  {
         char *func;          char *func;
         int argc;          int argc;
         int id;          int id;
         FUNC f;  
         Q ret;          Q ret;
         VL vl;  
         ERR err;          ERR err;
         NODE n,n1;          NODE n,n1;
   
Line 346  int serial;
Line 342  int serial;
         }          }
 }  }
   
 print_rect(int x, int y, int z, int w)  void print_rect(int x, int y, int z, int w)
 {  {
         extern DWORD MainThread;          extern DWORD MainThread;
   

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>