32 lines
513 B
C
32 lines
513 B
C
/* XPM */
|
|
#ifndef XPMMAIN
|
|
extern char *dashedline_xpm[];
|
|
|
|
#else
|
|
char *dashedline_xpm[] = {
|
|
/* columns rows colors chars-per-pixel */
|
|
"16 16 2 1",
|
|
"- c Red",
|
|
" c None",
|
|
|
|
/* pixels */
|
|
" --- ",
|
|
" -- ",
|
|
" - - ",
|
|
" - ",
|
|
" - ",
|
|
" - ",
|
|
" - ",
|
|
" - ",
|
|
" - ",
|
|
" - ",
|
|
" - ",
|
|
" - ",
|
|
" -- ",
|
|
" -- ",
|
|
" -- ",
|
|
" -"
|
|
};
|
|
#endif
|
|
|