You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
549 B

  1. /* XPM */
  2. #ifndef XPMMAIN
  3. extern char *redo_xpm[];
  4. #else
  5. char *redo_xpm[] = {
  6. /* width height num_colors chars_per_pixel */
  7. "16 16 4 1",
  8. /* colors */
  9. " c None",
  10. "X c #0000E0",
  11. "a c #808080",
  12. ". c #404040",
  13. /* pixels */
  14. " ",
  15. " ",
  16. " ",
  17. " ",
  18. " aXXXX.. ",
  19. " aX....XX.. X..",
  20. " XX ..X XX..",
  21. " XX ..XXX..",
  22. " XX ..XXXX..",
  23. " XX ..XXXXX..",
  24. " .aXX .........",
  25. " .XXXa ",
  26. " ",
  27. " ",
  28. " ",
  29. " "};
  30. #endif