home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / graphics / ftpovstc / atari.c < prev    next >
C/C++ Source or Header  |  1994-07-22  |  342b  |  24 lines

  1. extern char DisplayFormat;
  2. extern char PaletteOption;
  3.  
  4. static struct
  5. {
  6.     int red, green, blue;
  7. } colour_error;
  8.  
  9. void display_init(int width, int height)
  10. {
  11. }
  12.  
  13. void display_finished(void)
  14. {
  15. }
  16.  
  17. void display_close(void)
  18. {
  19. }
  20.  
  21. void display_plot(int x, int y, unsigned char Red, unsigned char Green, unsigned char Blue)
  22. {
  23. }
  24.