annotate etc/custom/right.xpm @ 4988:4cfb6aeb989d
fix compile problems on Windows native
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-02-05 Ben Wing <ben@xemacs.org>
* syswindows.h (LOCAL_FILE_FORMAT_TO_TSTR):
Cast pointer when storing value to avoid problems because some
store vars are Extbyte * and some are LPTSTR.
author |
Ben Wing <ben@xemacs.org> |
date |
Fri, 05 Feb 2010 23:22:59 -0600 |
parents |
43dd3413c7c7 |
children |
7910031dd78a |
rev |
line source |
155
|
1 /* XPM */
|
|
2 static char * right_xpm[] = {
|
|
3 "10 10 5 1",
|
|
4 " c Gray90",
|
|
5 ". c Gray90",
|
|
6 "X c none",
|
|
7 "o c Gray75",
|
|
8 "O c Gray40",
|
|
9 " .XXXXXXXX",
|
|
10 " ...XXXXXX",
|
|
11 " ....XXXX",
|
|
12 " oo....XX",
|
|
13 " oooo....",
|
|
14 " ooooOOOO",
|
|
15 " ooOOOOXX",
|
|
16 " OOOOXXXX",
|
|
17 " OOOXXXXXX",
|
|
18 " OXXXXXXXX"};
|