home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1991 / 08 / ctest / graph.c < prev   
Text File  |  1991-05-20  |  435b  |  43 lines

  1. /* dummy graphics routines */
  2.  
  3. /*
  4. #include <graph.h>
  5. */
  6.  
  7. void init_graphics()
  8. {
  9. /*
  10.     _setvideomode(_VRES16COLOR);
  11.     _clearscreen(_GCLEARSCREEN);
  12. */
  13. }
  14.  
  15. void clear_screen()
  16. {
  17. /*
  18.     _clearscreen(_GCLEARSCREEN);
  19. */
  20. }
  21.  
  22. void done_graphics()
  23. {
  24. /*
  25.     _setvideomode(_DEFAULTMODE);
  26. */
  27. }
  28.  
  29. void moveto(int x,int y)
  30. {
  31. /*
  32.     _moveto(x,y);
  33. */
  34. }
  35.  
  36. void lineto(int x,int y)
  37. {
  38. /*
  39.     _lineto(x,y);
  40. */
  41. }
  42.  
  43.