home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Graphics / SPD / Sources / drv.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-10  |  726 b   |  28 lines  |  [TEXT/R*ch]

  1. /*
  2.  * Modified: 17 Mar 1993
  3.  *           Eduard [esp] Schwan
  4.  *           Passed bg_color to display_init
  5.  *             (unfortunate side-effect is you should now call
  6.  *             lib_output_background_color BEFORE lib_output_viewpoint.)
  7.  *
  8.  * Modified: 2 August 1993  - More ANSI C & Mac compatibility fixes
  9.  *           Eduard [esp] Schwan
  10.  *
  11.  */
  12.  
  13. #ifndef DISP_H
  14. #define DISP_H
  15.  
  16. #include "def.h"
  17.  
  18.  
  19. void display_init PARAMS((int xres, int yres, COORD3 bk_color));
  20. void display_close PARAMS((int wait_flag));
  21. void display_clear PARAMS((void));
  22. void display_plot PARAMS((int x, int y, COORD3 color));
  23. void display_line PARAMS((int x0, int y0, int x1, int y1, COORD3 color));
  24. int kbhit PARAMS((void));
  25.  
  26.  
  27. #endif /* DISP_H */
  28.