home *** CD-ROM | disk | FTP | other *** search
/ Chestnut's Multimedia Mania / MM_MANIA.ISO / graphics / povsrc20 / arm.c < prev    next >
C/C++ Source or Header  |  1993-08-29  |  435b  |  31 lines

  1. #include <stdio.h>
  2.  
  3. #include "bbc.h"
  4. #include "sprite.h"
  5.  
  6. extern char DisplayFormat;
  7. extern char PaletteOption;
  8.  
  9. static struct
  10. {
  11.     int red, green, blue;
  12. } colour_error;
  13.  
  14. void display_init(int width, int height)
  15. {
  16.  
  17. }
  18.  
  19. void display_finished(void)
  20. {
  21. }
  22.  
  23. void display_close(void)
  24. {
  25. }
  26.  
  27. void display_plot(int x, int y, unsigned char Red, unsigned char Green, unsigned char Blue)
  28. {
  29.     printf("*%d,%d,%d,%d,%d\n", x, y, Red, Green, Blue);
  30. }
  31.