home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / source / rayce27s / dvi.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-02  |  1.0 KB  |  54 lines

  1. /*
  2.  * dvi.c -- device independent replacement for ibmtcc.c
  3.  * 
  4.  * (c) by Han-Wen Nienhuys, 1993 <hanwen@stack.urc.tue.nl>
  5.  * 
  6.  * This program is free software; you can redistribute it and/or modify it
  7.  * under the terms of the GNU General Public License as published by the
  8.  * Free Software Foundation;
  9.  * 
  10.  * This program is distributed in the hope that it will be useful, but
  11.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * General Public License for more details.
  14.  * 
  15.  * You should have received a copy of the GNU General Public License along
  16.  * with this program; if not, write to the Free Software Foundation, Inc.,
  17.  * 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  * 
  19.  */
  20.  
  21. #include "ray.h"
  22. #include "proto.h"
  23.  
  24.  
  25. PUBLIC int
  26. check_abort(void)
  27. {
  28.     return 0;
  29. }
  30.  
  31. PUBLIC void
  32. timer_start(void)
  33. {
  34.     return;
  35. }
  36.  
  37. PUBLIC long
  38. timer_stop(void)
  39. {
  40.     return 0l;
  41. }
  42.  
  43. PUBLIC
  44. install_handlers(void)
  45. {
  46.     return;
  47. }
  48.  
  49. PUBLIC void
  50. init_machine(void)
  51. {
  52.     return;
  53. }
  54.